• I’m attempting to use permalinks in WordPress 3.0. The issue I’m having is permalinks works for EVERY page except for when attempting to navigate to the home blog page. Which is just https://www.domainname.com/ there is no /blog/ or /wordpress/

    I’m using IIS6 and Ionic ISAPI Rewrite Filter, the rule I’m using for that is:

    RewriteRule ^/(?!images)(?!wp-[^\?\/]*)([^\?]+)$ /rewrite.php?$1

    and in the rewrite.php file I have the following:

    <?php
    $_SERVER['PATH_INFO'] = $_SERVER['QUERY_STRING'];
    include('index.php');
    ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Permalinks’ is closed to new replies.