Problem with 301 redirect
We moved our site from one domain to another in the application.cfm on the old domain I analyze incoming CGI.SCRIPT_NAME, divide URL into composite parts and form new links into tmpRedirectPath variable and after that make redirect to new links using new domain name:
<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="location" value="http://www.newsite.com/#tmpRedirectPath#">
Everything works, BUT in the address line of browser stay old URL.
Why this happend? Could I do something to change URL to new together with redirect?
