Using ISAPI Rewrite with Wordpress
Posted by Paul Woodland (Import) on 19 March 2010 07:16 PM
ISAPI Rewrite is an optional feature on our hosting plans. To configure it for use with Wordpress enter the following permalink code in wordpress setup:
/%postname%

Then create a .htaccess file in the wwwroot directory containing the following code:

RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php?p=$1 [NC,L]

(79 vote(s))
Helpful
Not helpful

Comments (0)