As my previous server was a Linux powered machine I have this piece of code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?path=$1 [NS,L]
</IfModule>
This piece of code will put the information in the URL like this:
http://www.example.com/nr1/nr2/nr3/
into an array like this:
array ( 0 => "nr1", 1 => "nr2", 2 => "nr3")
My new server machine is an Windows 2008 (IIS) based server. Now i would like to use the mod_rewrite mod on my new server aswell. In short my question is:
Can anyone tell me, or link me to a tutorial that tells me, how to install/use the mod_rewrite mod (or any mod that does the same thing) and translate the code above into a format i can use on my windows based server.
I still use php, not ASP.NET, I know many people will say use apache or something, but IIS usage is needed unfortunately.
Many thanks in advance!