Skip to content

Instantly share code, notes, and snippets.

@jorgeguberte
Created December 1, 2014 18:27
Show Gist options
  • Select an option

  • Save jorgeguberte/e84340a34c054b145b54 to your computer and use it in GitHub Desktop.

Select an option

Save jorgeguberte/e84340a34c054b145b54 to your computer and use it in GitHub Desktop.
htaccess codeigniter
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /liqueur/
RewriteCond $1 !^(index\.php|assets|static|images|scripts|css|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment