Create a New .htaccess file in root folder
add these line and save It.
RewriteEngine on
RewriteCond $1 !^(index\.php|assets|images|js|css|uploads|favicon.png)
RewriteCond %(REQUEST_FILENAME) !-f
RewriteCond %(REQUEST_FILENAME) !-d
RewriteRule ^(.*)$ ./index.php/$1 [L]
Source here
https://stackoverflow.com/questions/16966290/codeigniter-object-not-found-only-the-index-function-works
No comments:
Post a Comment