• Hi everyone,

    I recently moved my WP blog to a new server.

    http://www.sowetogospelfans.com

    For some reason, the site will not load the index.php file. It was initially directed to a subdirectory/wp-blog-header.php … but when it wasn’t working, I reinstalled WP from scratch into the root directory and the same 404 Not Found error shows up.

    Any ideas why this is? I’ve tried playing around with it, but with no avail. Any help will be much appreciated. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Have you spoken to your hosting provider? If you are on an Apache server, you might want to try adding:

    DirectoryIndex index.php index.html to your root .htaccess file.

    Hi,

    If you are receiving 404 error message then have a check with your correct old permalink settings..and if you have updated the settings from old settings then add this code in htaccess file of your domain and have a check:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Thanks,

    Shane G.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘404 Not Found’ is closed to new replies.