Issue
While hosting a Apache CodeIgniter website on my server, the first page is coming through fine and the other links are showing an error as shown below.
Not Found
The requested URL /site/ourservices was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
How to sort this out? I am a beginner.
Solution
Add these lines to .htaccess: (based on codeigniter urls docs)
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Answered By - Mohammad Hamedani
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.