Skip to content

Instantly share code, notes, and snippets.

@benlumley
Created August 5, 2010 13:25
Show Gist options
  • Save benlumley/509731 to your computer and use it in GitHub Desktop.
Save benlumley/509731 to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
RewriteEngine On
# if it doesn't work, or you use a subfolder type path, you may need to edit/uncomment below
#RewriteBase /
# in short, this bit says "does this request map to a file or folder? if not, send it to index.php
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