.htaccess is not working.
/index.php/user
-- is workinghttp://www.example.com/user
is not working
Current .htaccess file:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
.htaccess is not working.
Current .htaccess file:
|
|||||
|
check httpd.conf to see if .htaccess is enabled |
|||||
|
Your rewrite rules should look like this:
If your CI installation runs on a CGI implementation, you should add a questionmark in the .htaccess, lik so:
|
|||||||||
|