Skip to content

Instantly share code, notes, and snippets.

@juanwilde
Created August 31, 2016 12:38
Show Gist options
  • Save juanwilde/e780f49715d2587592616ea9be4d72a8 to your computer and use it in GitHub Desktop.
Save juanwilde/e780f49715d2587592616ea9be4d72a8 to your computer and use it in GitHub Desktop.
htaccess Codeigniter 3
Options FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment