To configure ISAPI rewrite you will need the following rules placed inside your httpd.ini file. The httpd.ini file will be in your ISAPI_Rewrite installation directory (for the free version) or in the root of your web site directory if you have the full version. If there is no httpd.ini in the root of your web site and you are using the full version you will have to create one.
[ISAPI_Rewrite]
RewriteRule /categories(.*) /categories.php?$1 [I,L]
RewriteRule /pages(.*) /pages.php?$1 [I,L]
RewriteRule /blogrss(.*) /blogrss.php?$1 [I,L]
RewriteRule /blogs(.*) /blogs.php?$1 [I,L]
RewriteRule /search(.*) /search.php?$1 [I,L]
RewriteRule /authors(.*) /authors.php?$1 [I,L]
RewriteRule /articlerss(.*) /articlerss.php?$1 [I,L]
RewriteRule /newsrss(.*) /newsrss.php?$1 [I,L]
RewriteRule /news(.*) /news.php?$1 [I,L]
RewriteRule /articles(.*) /articles.php?$1 [I,L]
or if you have Interspire Website Publisher inside a subfolder:
[ISAPI_Rewrite]
RewriteRule /subfolder/categories(.*) /subfolder/categories.php?$1 [I,L]
RewriteRule /subfolder/pages(.*) /subfolder/pages.php?$1 [I,L]
RewriteRule /subfolder/blogrss(.*) /subfolder/blogrss.php?$1 [I,L]
RewriteRule /subfolder/blogs(.*) /subfolder/blogs.php?$1 [I,L]
RewriteRule /subfolder/search(.*) /subfolder/search.php?$1 [I,L]
RewriteRule /subfolder/authors(.*) /subfolder/authors.php?$1 [I,L]
RewriteRule /subfolder/articlerss(.*) /subfolder/articlerss.php?$1 [I,L]
RewriteRule /subfolder/newsrss(.*) /subfolder/newsrss.php?$1 [I,L]
RewriteRule /subfolder/news(.*) /subfolder/news.php?$1 [I,L]
RewriteRule /subfolder/articles(.*) /subfolder/articles.php?$1 [I,L]
You may need to restart your IIS server.

The article has been updated successfully.