Reply to topic
HTTP 302 Temporary Redirect
smnbin


Joined: 17 Jan 2008
Posts: 7
Reply with quote
Hello,

My client's website is developed using Coldfusion 8 and Fusebox 5. My client has employed an SEO consultant to look at the website and one of the suggestions the consultant has come back with is:

"The website uses a 302 temporary re-direct command (Server language), if this could be changed to a 301 permanent re-direct as search engines tend to follow 301 commands better and trust them more in general. The words permanent and temporary aren't important it's just search engines follow them a lot easier as well."

I have to admit to not knowing too much about HTTP headers.

Please could someone explain to me what this suggestion means in a bit more detail and whether it is something I can easily implement?

Many thanks in advance for your assistance...
dmalone
HostMySite Tech

Joined: 23 Nov 2004
Posts: 65
Reply with quote
If the redirect on those pages is done in CF, there will probably be something like this:

Code:

<cfheader statuscode="302" statustext="Moved temporarily">
<cfheader name="Location" value="http://www.new-url.com">


If so, you can just change that to something like:

Code:

<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="Location" value="http://www.new-url.com">



I found a page that lists how to do a 301 via several different means, so if the above is of no help, this might get you started:

http://www.webconfs.com/how-to-redirect-a-webpage.php



Hope that helps!
-Dave
HTTP 302 Temporary Redirect
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Reply to topic