We Recommend

The Definitive Guide to Django The Definitive Guide to Django
In The Definitive Guide to Django: Web Development Done Right, Adrian Holovaty, one of Django’s creators, and Django lead developer Jacob Kaplan–Moss show you how they use this framework to create award–winning web sites.


Posted By

koorb on 04/23/08


Tagged

php textmate htaccess codeigniter


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

ozskry
leighmac


Codeigniter htaccess


Published in: Other 


  1. RewriteEngine on
  2. RewriteBase /
  3. # Hide the application and system directories by redirecting the request to index.php
  4. RewriteRule ^(application|system|\.svn) index.php/$1 [L]
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{REQUEST_FILENAME} !-d
  7. RewriteRule ^(.*)$ index.php/$1 [QSA,L]

Report this snippet 

You need to login to post a comment.