• I upgraded to wordpress 3 yesterday and everything was running smoothly. However, I made a new Page on my blog “Album Review Index” this morning, and now the Homepage automatically redirects there. I tried deleting it permanently, but now all I get is a 404 error instead. The rest of the blog is working perfectly, it’s just that my index page now automatically redirects to the wrong page. I looked at .htaccess to see was that the problem (after investigating other threads here), but even adding the Directory line to that, it’s still the same.

    https://swearimnotpaul.com is my blog, and my .htaccess is as follows:

    # BEGIN WordPress
    
    # WPhtc: Begin Custom htaccess
    DirectoryIndex index.php
    # WPhtc: End Custom htaccess
    
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter alaskafox

    (@alaskafox)

    I turned off all my plugins and the site is back to normal now. So that should always be the first port of call I think.

    So that should always be the first port of call I think.

    that’s usually the first thing we recommend.

    you don’t happen to use the headspace plugin do ya? I’m seeing a lot of issues with that one

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Homepage redirects to wrong page’ is closed to new replies.