I want to redirect any URL that contains these parameters/string option=com_content&view=article&id=2455&catid=10
to 401 page gone.
I have tried this but it doesn’t work:
RewriteEngine on
RewriteCond %{QUERY_STRING} ^option=com_content&view=article&id=2455&catid=10 [NC]
RewriteRule ^ - [R=410,L]
What am I getting wrong?
3