I need advice how to remove a parameter from the url using. Htcaccess
The condition is as follows:
redirect url from:
http://example.com/?movie=2&a
Try adding the following to the .htaccess file in the root directory of your site.
.htaccess
RewriteEngine on RewriteBase / #If request contains ref param RewriteCond %{THE_REQUEST} \?([^&\ ]+)&ref= [NC] #redirect to URL without the ref param RewriteRule ^ %{REQUEST_URI}?%1 [L,R=301]