Having no luck removing the index.php file from the url.
For example I want to access the 'welcome' controller via http://domain.com/welcome
Currently getting a 404 error when attempting too.
However, at the moment I can only access is via http://domain.com/index.php/welcome
I have this currently in my .htaccess file which I got from the CI user guide:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
I have the .htaccess file located in the directory above the application folder.
Any help would be great.
I have the following .htaccess
Also, please be sure that the AllowOverride directive of your httpd.conf is not set to None, since that would prevent your .htaccess rules to be readed.