cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,268
463
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.
 

Phincy

Member
Feb 11, 2012
16
0
51
cPanel Access Level
Root Administrator
Try adding the following permalink rules to your .htaccess file.

# 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