Skip to content

Instantly share code, notes, and snippets.

@julindra
Last active May 6, 2017 08:41
Show Gist options
  • Save julindra/ce03f335d0c60457d18fdeda7761273a to your computer and use it in GitHub Desktop.
Save julindra/ce03f335d0c60457d18fdeda7761273a to your computer and use it in GitHub Desktop.
.htaccess for CodeIgniter
RewriteEngine On
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
#OR
RewriteEngine on
RewriteBase /namafolder/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment