In .htaccess
how can I do a 410 redirection for all URLs with com_virtuemart
.
Anything like:
index.php?page=shop.browse&option=com_virtuemart&search=GO&search_category=63&keyword1=43
In .htaccess
how can I do a 410 redirection for all URLs with com_virtuemart
.
Anything like:
index.php?page=shop.browse&option=com_virtuemart&search=GO&search_category=63&keyword1=43
com_virtuemart is part of QueryString in your url. You can use the following to redirect urls with com_ to 410 error status.
RewriteEngine on
RewriteCond %{QUERY_STRING} com_virtuemart [NC]
RewriteRule ^ - [R=410,L]