I am trying to create the appropriate 301 redirects for a site that was originally built using query strings. The old URL structure is as follows:
http:
I want to redirect the entire subfolder (named "about") to a new page in the new domain. The new domain URL is as follows:
http:
So, I set up a redirect that looks like this:
redirectMatch 301 ^/about/ http:
It only redirects fine, but it retains the original URL string, so the new URL in the browser looks like this:
http://www.newsite.com/info/?fuseaction=cor_av&artID=5049
I definitely miss the Apache / 301 expert, and I know how to fix it. I just want to take everything off myself? on the.
Really appreciate any help.
source share