How can i remove index.php from url in codeingnator.
I have changed in config page from $config['index_page'] = 'index.php'
to $config['index_page'] = ''.
But I dont know ,where i can add .htaccess file?
How can i remove index.php from url in codeingnator.
I have changed in config page from $config['index_page'] = 'index.php'
to $config['index_page'] = ''.
But I dont know ,where i can add .htaccess file?
Re-write htaccess file with the following code.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
you could found more information Here
add this lines to .htaccess file
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$1 [PT,L]