404 Not Found error
silicon755 opened this issue · 2 comments
silicon755 commented
How do I solve;
"The requested URL /categories/1/programming was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
jobskee commented
You need to make sure that mod_rewrite is enabled in your hosting server.
devasia2112 commented
Any idea how i can get it working with nginx?
i converted the rules from apache to nginx, but it returns just 404 error.
location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php break; } }
cheers!