To do that just do the following steps:
- Open config.php in codeigniter application config directory
- replace $config['index_page'] = "index.php" with $config['index_page'] = ""
- Create a ".htaccess" file in the root of CodeIgniter directory
- write the following script:
RewriteEngine on 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