# Example IIS ReWrite # ------------------------------------------------------ # INI file for the Ionics ISAPI Rewrite Filter. # Custom Friendly URL ReWrite for IIS. # # Place next to the IsapiRewrite4.dll file. # (Usually located in: C:\WINDOWS\system32\inetsrv\IIRF) # # Support, Docs and Download are here: # http://www.codeplex.com/IIRF # http://iirf.codeplex.com/Wiki/View.aspx?title=Examples # # The end result should be: # /index.php?query=/original-url # # OR # # /index.php?query=/original-url&other=123 # (Maintaining any additional $_GET queries.) # RewriteLogLevel 3 RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{QUERY_STRING} (.*) RewriteRule ^/phire-cms-1.1/(.*)((\?.+)|())$ /phire-cms-1.1/index.php?query=/$1&%{QUERY_STRING} [I,L]