Hello All,
I have as bellow in .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
ReWriteRule ^(.+)$ index.php?url=$1 [QSA,L]
It's work fine in Apache.
Now I need it works in IIS 7 hosting.
Could you please help to write sample web.config file for me?
Thanks