Skip to content

Instantly share code, notes, and snippets.

@adrian-ortega
Created July 31, 2017 16:49
Show Gist options
  • Save adrian-ortega/3df6910a7f21684e9bd1f7b45be23479 to your computer and use it in GitHub Desktop.
Save adrian-ortega/3df6910a7f21684e9bd1f7b45be23479 to your computer and use it in GitHub Desktop.
A simple .htaccess file to be used with PHP MVC applications like Slim, Codeigniter and custom creations
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