I have done many redirects and some with 1 for 1 using query strings, but not a global one using query strings.
I have a URL in the format:
That needs to redirect to
I've been told that the query string is not always query=, so that can be another query string, not just query=something.
A guesstimate of what it should look like is below.
RewriteCond %{REQUEST_URL} SearchResultsA/*
RewriteCond %{QUERY_STRING} *
RewriteRule ^(.*)
Any help would be greatly appreciated.
Thanks,
John
I have a URL in the format:
That needs to redirect to
I've been told that the query string is not always query=, so that can be another query string, not just query=something.
A guesstimate of what it should look like is below.
RewriteCond %{REQUEST_URL} SearchResultsA/*
RewriteCond %{QUERY_STRING} *
RewriteRule ^(.*)
Any help would be greatly appreciated.
Thanks,
John