Skip to content

Instantly share code, notes, and snippets.

@earvinpiamonte
Created September 1, 2019 04:59
Show Gist options
  • Save earvinpiamonte/d85a21e87ada9da5f75584ec53afc6b1 to your computer and use it in GitHub Desktop.
Save earvinpiamonte/d85a21e87ada9da5f75584ec53afc6b1 to your computer and use it in GitHub Desktop.
Codeigniter redirect without index.php using .htaccess
RewriteEngine On
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