Skip to content

Instantly share code, notes, and snippets.

@calebjonasson
Created December 16, 2012 02:35
Show Gist options
  • Save calebjonasson/4302593 to your computer and use it in GitHub Desktop.
Save calebjonasson/4302593 to your computer and use it in GitHub Desktop.
Rewrites everything after the host to a GET variable in the index.php file.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment