Skip to content

Instantly share code, notes, and snippets.

@misterzik
Created January 26, 2015 17:17
Show Gist options
  • Save misterzik/a86bb75ba8a0d6edd18d to your computer and use it in GitHub Desktop.
Save misterzik/a86bb75ba8a0d6edd18d to your computer and use it in GitHub Desktop.
CodeIgniter-Subfolder-.Htaccess
# CodeIgniter Subfolder .Htaccess
# today hints by www.insanen.com
Options +FollowSymLinks
RewriteEngine On
# Please do-not forget to change RewriteBase /YOUR-SUBFOLDER HERE
RewriteBase /YOUR-SUBFOLDER
RewriteRule ^$ index.php [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond $1 !^(index\.php|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ index.php?/$1 [L]
@Andrewsuares
Copy link

Perfect! Thanks for this!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment