Try resetting the permalinks in your dashboard and see if that fixes your issue. Also, did you install any plugins that may be causing the issue, or a theme that is not compatible with your wp version? Revert back to the WP default theme, if you’re using a different one, and see if that helps. Also, here’s more info:
http://codex.ww.wp.xz.cn/Using_Permalinks
Hi,
Reset your desired permalink from wordpress admin area and then add this code in htaccess of your blog/site:
# 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
Now, check with blog posts/pages.
Thanks,
Shane G.
I dont have an htaccess file??
Should I create one?
scvbrent,
Did you look in the files listed under WP? You should find it there. Same area as your wp-config.php file.