“Page not Found” in WordPress after Upgrade

I got “Page Not Found” on any permalink clicked in my blog after doing:

  • an upgrade of the Synology’s WordPress package from 3.4 to 3.5.
  • and an upgrade all my Plugins.

The problem was in the URL rewriting configured in the .htaccess.

Click to Read More

The easiest solution is to reset the “Default” common settings for the Permalink via the WordPress Dashboard. This will reset the .htaccess.

  1. Go into the DashBoard > Settings > Permalinks.
  2. Select “Default” in the “common settings”
  3. “Save Changes”

Possibly set back next your favorite settings (such as “Post name” in my case).

Voilà.

Here is for information purpose the content of the .htaccess once fixed:

[bash] # BEGIN WordPress

RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]

# END WordPress
[/bash]

Loading


Categories:

Tags:


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *