Skip to content

Instantly share code, notes, and snippets.

@robwent
Created March 7, 2019 21:06
Show Gist options
  • Save robwent/0d8efa596c1cc2cffda3a1c32e2edfa2 to your computer and use it in GitHub Desktop.
Save robwent/0d8efa596c1cc2cffda3a1c32e2edfa2 to your computer and use it in GitHub Desktop.
Redirect a URL that has a query string
# Redirects /index.php?option=com_content&task=view&id=59&Itemid=69
RewriteCond %{QUERY_STRING} ^option=com_content&task=view&id=59&Itemid=69$
RewriteRule ^index\.php?$ https://domain.com/page? [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment