Skip to content

Instantly share code, notes, and snippets.

@bnvk
Created March 17, 2010 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bnvk/334895 to your computer and use it in GitHub Desktop.
Save bnvk/334895 to your computer and use it in GitHub Desktop.
.htaccess for CodeIgniter allows folders in the root folder such as css js images, etc
===========================================================================================
Options +FollowSymLinks
RewriteEngine On
RewriteCond $1 !^(index\.php|favicon\.ico|css|js|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
===========================================================================================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment