• I have updated my site today to the latest WP and I keep getting 404 errors. I have reset permalinks few times already. It does help at first but later on, I get 404 error again, especially if I make any changes to site.

    Anyone else having this issue? Is there a more permanent fix to stop 404? I feel like I might have to roll back to previous version of WP until this bug is fixed as I have many visitors and users on my site every day.

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you have Apache installed and running on your server, create a .htaccess file in the document root directory of your website and add this code:

    # BEGIN WordPress
    <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

    Thread Starter darunia77

    (@darunia77)

    Thank you @rosehosting. I will try this and see if it helps permanently.

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