Reputation: 254
I have a domain
And i need redirect from this link
to
Thanks.
Upvotes: 0
Views: 24
Reputation: 12469
This should work for you:
RewriteEngine on
RewriteCond %{THE_REQUEST} ^(GET|POST)\ /\?(.*)\ HTTP
RewriteRule ^ %2\? [R=301,L]
Upvotes: 1