Skip to content

Instantly share code, notes, and snippets.

@haganbt
Created August 5, 2013 12:45
Show Gist options
  • Save haganbt/6155654 to your computer and use it in GitHub Desktop.
Save haganbt/6155654 to your computer and use it in GitHub Desktop.
CodeIgniter - htaccess - Remove index.php from url's
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment