just while i am thinking, found this explanation of the first bit...
RewriteEngine on
This line starts the mod_rewrite module
RewriteCond %{REQUEST_FILENAME} !-d
If the request is for a real directory (one that exists on the server), index.php isn't served.
RewriteCond %{REQUEST_FILENAME} !-f
If the request is for a file that exists already on the server, index.php isn't served.
ISAPI_Rewrite version 3 uses the same syntax as mod_rewrite, so you will not need to convert anything for it to work. You will just need to remove the following line since that is an Apache directive dealing with symbolic links, which a Windows server does not have:
Code:
Options +FollowSymlinks
Simply place all of the other lines in a .htaccess file in your /wwwroot folder, and it should work fine as long as you are on a server with version 3 of ISAPI_Rewrite.