I have the following rewrite configuration in my .htaccess
file which is working fine in apache server but its not working properly in IIS server.
Options +FollowSymlinks RewriteEngine on RewriteCond %{HTTP_HOST} ^myservername/$ [NC] RewriteRule ^(.*)$ http://myservername/$1 [R=301,L] RewriteRule !\.(php|png|gif|jpg|css|htm|html|txt|js|swf|xml|ico|mp3|csv|wav|mid) /index.php [L,QSA]
How do I get this working on IIS?
.htaccess
files are Apache specific. – Pekka