Skip to content

Instantly share code, notes, and snippets.

@ktopping
Created April 19, 2010 21:27
Show Gist options
  • Save ktopping/371658 to your computer and use it in GitHub Desktop.
Save ktopping/371658 to your computer and use it in GitHub Desktop.
# mod_rewrite preamble:
RewriteEngine On
RewriteBase /shop
# The following rule omits anything that actually really maps to a file or folder.
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
# Anything that's not the above, we route to index.php with the path in "readablePath"
RewriteRule (.*) index.php?readablePath=$1 [L,QSA]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment