Forum Moderators: open

Message Too Old, No Replies

301 redirect in ASP for 300 renamed pages

         

bulkin

12:31 am on Jun 28, 2005 (gmt 0)

10+ Year Member



Hi guys,

i'm about to rename approx. 300 pages that with PR's 3 to 5. would like to have PR transferred to the new pages is possible. i've heard about the 301's and would like to confirm that this: <%Response.Redirect URL%> would be sufficient (asp).

thank you much! :)

v

p.s. I loved the conference! never expected to learn so much :)

defanjos

1:47 am on Jun 28, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I don't think that is enough - see this previous thread [webmasterworld.com]

bulkin

6:34 pm on Jun 28, 2005 (gmt 0)

10+ Year Member



thank you defanjos! :)

Unstable Adam

12:36 am on Jun 29, 2005 (gmt 0)



the Best way to make sure you are actually using 301's is the following. By default asp.net uses 302's

<%
Response.Redirect(URL,false)
Response.StatusCode = 301
Response.End()
%>

This code does work but I am typing from memory so make sure you check the casing and the exact property name.

you may also want to look at downloading fidler as it will help you make sure asp.net is doing what you think it is doing.

[fiddlertool.com...]