Webmaster Forum


Go Back   Webmaster Forum > Marketing Forums > SEO Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

SEO Forum Search engine optimization discussions.

   

Reply
 
LinkBack Thread Tools Display Modes
Old 06-08-2006, 06:09 AM   #1 (permalink)
Inactive
 
Join Date: 02-14-06
Posts: 28
iTrader: 0 / 0%
Latest Blog:
None

programmersbank is liked by many
301 and 302 Redirect

what is 301 redirect and 302 redirect?
__________________
ToonsGig, FunnyChoice
programmersbank is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-08-2006, 06:16 AM   #2 (permalink)
Warrior Princess
 
kristeejo's Avatar
 
Join Date: 05-03-04
Posts: 10,714
iTrader: 2 / 100%
kristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster materialkristeejo is supreme webmaster material
301 is permanent and 302 is temporary

http://www.seotoday.com/browse.php/c.../477/index.php
__________________
Born Again Signature Virgin
kristeejo is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-08-2006, 06:16 AM   #3 (permalink)
v7n Mentor
 
JamieJelly's Avatar
 
Join Date: 03-09-06
Location: London UK
Posts: 2,796
iTrader: 0 / 0%
JamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest order
301 redirect is for when you have permanently moved a webpage and you want to redirect search engines and visitors to the new location. Pagerank is also passed on. You can use the following syntax inside a .htaccess file to create a 301 redirect
Code:
redirect 301 /old/old.htm http://www.you.com/new.htm
You can use a 301 redirect to deal with canonical issues too, which is where search engines see www.domain.com and domain.com as two different locations and therefore give them seperate PR. By using a 301 redirect to redirect domain.com to www.domain.com you are effectively combining the PR of the two URLs.

You can deal with this by putting the following in a .htaccess file
Code:
Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^yoursite.com [NC] RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
302 redirects are often used to take advantage of a google exploit. I won't go in to too much detail here, but their original purpose it to provide temporary redirection.

I don't see much use for 302s, stick to 301s!
__________________
Bank charges
JamieJelly is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-08-2006, 08:52 AM   #4 (permalink)
Inactive
 
Join Date: 05-30-06
Location: Houston
Posts: 96
iTrader: 0 / 0%
tork311 is liked by somebodytork311 is liked by somebodytork311 is liked by somebodytork311 is liked by somebodytork311 is liked by somebody
if you use Microsofts web server it is a bit different
http://www.microsoft.com/technet/pro....mspx?mfr=true
tork311 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-08-2006, 02:35 PM   #5 (permalink)
Individualist
 
John Scott's Avatar
 
Join Date: 09-27-03
Location: Japan, mostly
Posts: 42,521
iTrader: 3 / 100%
Latest Blog:
Google????

John Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster material
Send a message via AIM to John Scott Send a message via Yahoo to John Scott
For Google, 301 passes the PR and rankings. 302 doesn't.
John Scott is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-08-2006, 05:39 PM   #6 (permalink)
v7n Mentor
 
sixty6's Avatar
 
Join Date: 01-03-06
Location: Illinois
Posts: 1,499
iTrader: 0 / 0%
sixty6 is just really nicesixty6 is just really nicesixty6 is just really nicesixty6 is just really nicesixty6 is just really nicesixty6 is just really nicesixty6 is just really nicesixty6 is just really nicesixty6 is just really nicesixty6 is just really nicesixty6 is just really nice
Send a message via ICQ to sixty6 Send a message via AIM to sixty6 Send a message via Skype™ to sixty6
301 Redirects are appreciated by all Search Engines (not sure about MSN), but it's good on Yahoo! on my personal experience.

302 redirects make the Search Engine that it is only for a temporary time and it will eventually be removed...
__________________
Sixty6 Hosting - 1(888)229-3185
LinkVault
sixty6 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-09-2006, 07:46 AM   #7 (permalink)
Inactive
 
veridicus's Avatar
 
Join Date: 01-18-06
Posts: 139
iTrader: 0 / 0%
veridicus is just really niceveridicus is just really niceveridicus is just really niceveridicus is just really niceveridicus is just really niceveridicus is just really niceveridicus is just really niceveridicus is just really niceveridicus is just really niceveridicus is just really niceveridicus is just really nice
Quote:
Originally Posted by tork311
if you use Microsofts web server it is a bit different
The web server has nothing to do with HTTP response codes (other than the fact they send them). 301 and 302 are response codes for the client - web browser, bot, etc. - sent when a URI is requested.

301 instructs a client that a page has been moved permanantly. "The requested resource has been assigned a new permanent URI and any future references to this resource SHOULD use one of the returned URIs. Clients with link editing capabilities ought to automatically re-link references to the Request-URI to one or more of the new references returned by the server, where possible."

302 instructs a client that a page has been moved temporarily. "The requested resource resides temporarily under a different URI. Since the redirection might be altered on occasion, the client SHOULD continue to use the Request-URI for future requests."

All HTTP response codes are documented in the original RFC: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
veridicus is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-09-2006, 08:03 AM   #8 (permalink)
v7n Mentor
 
JamieJelly's Avatar
 
Join Date: 03-09-06
Location: London UK
Posts: 2,796
iTrader: 0 / 0%
JamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest order
I think he was referring to how they are implemented, with apache using .htaccess
__________________
Bank charges
JamieJelly is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-09-2006, 02:57 PM   #9 (permalink)
Inactive
 
GoWFB_SEO's Avatar
 
Join Date: 06-01-06
Posts: 70
iTrader: 0 / 0%
Latest Blog:
None

GoWFB_SEO is liked by many
Send a message via MSN to GoWFB_SEO
thanks, man. That is very clear
GoWFB_SEO is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Marketing Forums > SEO Forum

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
301 redirect tdd1984 SEO Forum 14 06-07-2007 12:48 AM
301 redirect help!! offthedome Coding Forum 6 05-27-2007 11:13 PM
PHP Redirect Pimpen 2010 Coding Forum 12 06-14-2004 11:28 AM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 03:33 AM.
© Copyright 2008 V7 Inc