How do I make exact match for a partial URL, like:
page_id=11
301 to xyz.com
but page_id=118 remains page_id=118
I have now
RewriteCond %{QUERY_STRING} page_id=11 but it works for 118 and anything with 11 in it too.
How do I make exact match for a partial URL, like:
page_id=11
301 to xyz.com
but page_id=118 remains page_id=118
I have now
RewriteCond %{QUERY_STRING} page_id=11 but it works for 118 and anything with 11 in it too.