I see alot of examples on how to get the value of RewriteCond %{QUERY_STRING} ARG=VAL but I what I have is a URL that looks like this:
www.mysite.com/page.phtml?dogs+labrador
Since I am not setting a name=val, I am having a hard time trying to get the redirect working:
What I would like to do is to check what VAL1 is and then base a redirect on the result. Also, how would it look if I wanted to test both variables as well?
This is my feeble attempt thus far:
RewriteCond %{QUERY_STRING} ^dogs(.*)$
RewriteRule ^page\.phtml$ www.mysite.com/dogs%20page [R=301,L]