Friday, April 19, 2013

For removing index.php from the codeigniter urls

For removing index.php from the codeigniter urls:

Create a .htaccess file with the following contents:


RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]

Put it outside the application folder.

No comments:

Post a Comment