regex - QUERY_STRING exact match -
how make exact match partial url, like:
page_id=11 301 xyz.com page_id=118 remains page_id=118
i have rewritecond %{query_string} page_id=11 works 118 , 11 in too.
you can use condition:
rewritecond %{query_string} (^|&)page_id=11(&|$) [nc]
Comments
Post a Comment