Skip to content

Instantly share code, notes, and snippets.

@cole007
Created February 18, 2014 12:17
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 cole007/9069894 to your computer and use it in GitHub Desktop.
Save cole007/9069894 to your computer and use it in GitHub Desktop.
htaccess rewrite issue
# htaccess rule to redirect queries to eg /shop/category/dvd to /shop/index.php?c=dvd
# HOWEVER this overrides any further queries, eg/shop/category/dvd?d=2011
RewriteRule ^shop/category/([a-zA-Z0-9-/]+)$ shop/index.php?c=$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment