Skip to main content

wordpress posts 404 error

Comments

3 comments

  • cPanelMichael
    Hello :) That typically means a file was not found. Do you notice any particular output to the Apache error log (/usr/local/apache/logs/error_log) or to the error_log file within the account when the 404 page generates? Thank you.
    0
  • Sreejit
    If you have enabled the permalinks ( [url=http://codex.wordpress.org/Using_Permalinks]Using Permalinks " WordPress Codex ) then make sure that you have put proper rules in .htaccess
    0
  • Phincy
    Try adding the following permalink rules to your .htaccess file. # BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress
    0

Please sign in to leave a comment.