Help with IIS, ISAPI_rewrite & permalinks
-
Hi there,
A new WP user here, with a fresh 2.0 install on IIS (bar a few bug fix updates).I’m trying to get permalinks working with ISAPI_rewrite, using the information I’ve gathered from the forums and other general searching (eg: https://www.selbmag.co.uk/2005/10/wordpress-and-isapi_rewrite/ ).
I have verified that rewriting is working by creating custom rules for the pages on my site, like so:
RewriteRule /contact/ /?page_id=4 [I,U,O]
However, I cannot get any other url to work, particularly the blog pages. They are working if I just send a basic querystring link, however using permalinks or the index.php/year/month/etc method both fail.
Does anybody have any suggestions?
Also, is there a way of replicating the .htaccess rules WP uses as standard with a ISAPI_rewrite httpd.ini file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>
# END WordPressIf this works for mod_rewrite, is there any chance a similar set could be created for ISAPI_rewrite?
Thanks for any assistance.
- The topic ‘Help with IIS, ISAPI_rewrite & permalinks’ is closed to new replies.