This is a common issue when a blogs rewrite rules have been altered. You will notice this when you are clicking links throughout the blog, and you get a '404' error.
Usually resetting the permalinks will solve this problem.
- Login to the WordPress Dashboard
- Click of Settings on the menu on the left hand side.
- Click on Permanlinks under Settings.
- Remember which setting it is set on now. (If you are using a custom structure, copy or save the custom structure somewhere.)
- Select Default
- Click on Save Changes
- Change it back to the setting it was on before you selected Default. (Put the custom structure back if you had one.)
- Click Save Changes
This will reset the permalinks and many times this will fix the issue.
If that didn't work, you may have to edit your .htaccess file directly.
Add this to the .htaccess file.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress If that didn't work or your problem is slightly different, try this:
If your blog is showing the wrong domain name in links, redirecting to another site, or is missing images and style, these are all usually related to the same problem: you have the wrong domain name configured in your WordPress blog. For details on how to solve this problem, visit: WordPress Home Fix


