Skip to content

Instantly share code, notes, and snippets.

@mig1098
Created January 30, 2019 13:54
Show Gist options
  • Save mig1098/046111924f42e0b051d78c2a159875a7 to your computer and use it in GitHub Desktop.
Save mig1098/046111924f42e0b051d78c2a159875a7 to your computer and use it in GitHub Desktop.
codeigniter htaccess
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