Skip to content

Instantly share code, notes, and snippets.

@tonycaputome
Forked from muhittin/codeigniter_htaccess
Last active October 2, 2015 21:48
Show Gist options
  • Save tonycaputome/2328105 to your computer and use it in GitHub Desktop.
Save tonycaputome/2328105 to your computer and use it in GitHub Desktop.
Apache : Codeigniter htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php/$1
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment