Skip to content

Instantly share code, notes, and snippets.

@krabello
Created December 31, 2014 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krabello/d5e4bb713efa44abf21b to your computer and use it in GitHub Desktop.
Save krabello/d5e4bb713efa44abf21b to your computer and use it in GitHub Desktop.
htaccess rewrite URL
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
#RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment