Created
May 31, 2019 18:33
-
-
Save lizardking8610/0296d27815ed84f3a93f7d1bf6f56a1b to your computer and use it in GitHub Desktop.
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
# Redirect Query String | |
<IfModule mod_rewrite.c> | |
RewriteCond %{REQUEST_URI} ^/specific/url/ | |
RewriteCond %{QUERY_STRING} key=value | |
RewriteRule (.*) /path/ [R=301,L] | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment