Forum Replies Created

Viewing 1 replies (of 1 total)
  • ***SOLUTION***

    I was furious when I read this (spent 10+ hours trying to fix it) and contacted Netfirms. They responded with this solution which has worked for my site hosted with Netfirms.

    Your .htaccess file should have this instead of the standard WordPress generated file:
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !index.php
    RewriteRule (.*) /index.php/$1 [L]
    </IfModule>

    # END WordPress

    This code gets rid of the /index.php/ part of the tag. I believe it is a work around instead of full support by them.

    You probably should turn the CHMOD to a setting like 644 so the WordPress control panel will not accidently overwrite the fix and return you to square one.

Viewing 1 replies (of 1 total)