Steps to remove index.php from url codeigniter :-
Config changes :- Go to “application/config/config.php”
Find below code:-
1 | $config [ 'index_page' ] = 'index.php' ; |
Replace with the below code:-
1 | $config [ 'index_page' ] = '' ; |
.htaccess changes :- If you not have any htaccess create new and place it on your root.
Go to “application/config/config.php”
Find below code
Find below code
1 | $config [ 'uri_protocol' ] = 'AUTO' ; |
Replace with the below code
1 | $config [ 'uri_protocol' ] = 'REQUEST_URI' ; |
RewriteEngine on
RewriteBase /harshit_ci/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.
0 comments:
Post a Comment