Question: I got the following error when i run my website : Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Answer:
To resolve this error you have to Edit .htaccess file
Please clean the file and add the following code
RewriteEngine on
<IfModule mod_rewrite.c>
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Now run refresh the browser links should work now.
文章转自:http://www.unixmen.com/additionally-404-not-found-error-encountered-trying-use-errordocument-handle-request/