Translating .htaccess to web.config

Criminet

New Member
I am hosting a php application on my virtual Windows server running IIS. The person who wrote the php website for me asked me to put this piece of codes in a .htaccess:\[code\]<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]</IfModule>\[/code\]But as this application is running on IIS, I need to translate this piece of codes to web.config. So could any one have experience about this, please help me to translate them into web.config?Thanks in advance!
 
Top