Created
March 7, 2019 21:06
-
-
Save robwent/0d8efa596c1cc2cffda3a1c32e2edfa2 to your computer and use it in GitHub Desktop.
Redirect a URL that has a query string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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