So this is how to remove the default index.php from the url:
1. edit the file application/config/config.pho line 29:
- $config['index_page'] = 'index.php';2. create new .htaccess file on the root folder, then add below snippet:
+ $config['index_page'] = '';
RewriteEngine onThat is it.. =)
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
No comments:
Post a Comment