Redirect Without Passing Old Page Properties
-
Is there a way to redirect one page to another, e.g. test.com/ to test.com/home, without passing link juice or any other associated properties of the latter to the former?
-
Well put, thanks Dan. I'm going to stick with the 302 "temporarily." Wink, wink.
After all, everything is temporary right?!
-
Hey Jesse
It gets tricky to say the least. First there's the protocols which are best practice "rules" for any web development - http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
But then there's Google's sort of own interpretations and treatment of those redirects on top of that. And there's always what Google says vs what they actually might be doing.
Technically a 302 is "found" although everyone uses it for "temporary" and yet a 307 is a temporary. I recall Google saying in their eyes there is no difference.
Yeah I guess you could leave 302s or 307s in forever, and how long is acceptable? I could leave a 302 redirect in place for 20 years and then decide to move it back? Is that what they mean?
As far as what Google does with them there's lots of Google and 3rd party resources about them and like I said we can probably find a few Matt Cutts videos talking about how they treat them - but then there's reality - which brings a lot of variables and moving parts.
So I think the main idea is as cliche as it sounds, all real situations are different. I follow this train of thought;
- If possible, FIRST choose what to do based upon best web standards and in most cases this should hopefully satisfy SEO.
- But if you have to do something purely for SEO - basically manipulate a known hole in how these things work vs. how Google supposedly treats them, because that's the only thing that will fix something - then do that. This might be why for example you'd choose a 302 redirect despite knowing it's not really temporary
-
Hey Dan can we talk about that whole concept of "temporary" redirecting signals for a moment?
My company has a site that was hit hard by Penguin and luckily the site was unnecessary to begin with as this company had 2 brands targeting the same business (don't get me started!). Anyway, the domain had to redirect for the sake of existing clients, so I recommended a 302. Now it's been sitting as a 302 for quite some time and everything has worked out fine thus far but I wonder what the ramifications are.
I know it's supposed to be temporary, but who's to stop us from leaving them permanently? Do you know of any sort of indexing issues this can lead to? Sounds like from what you're saying it doesn't really make a ton of difference but I've been wondering about this.
Could all just be semantics I guess.. Makes me wonder what the point of a 302 was when it was conceived by the web-gods.
Thoughts?
-
Hi There
Jesse is right, a 302 doesn't pass PageRank, but it make pass other signals (such as understanding of content, associated penalties - these are just my guesses by the way). Is this something where you are concerned of passing bad link signals? Or other undesired signals?
Also, technically a 302 is for "temporary" redirects, but people do misuse this temporary bit all the time and leave them more or less permanently
-Dan
-
302 passes no link juice
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
Old pages not mobile friendly - new pages in process but don't want to upset current traffic.
Working with a new client. They have what I would describe as two virtual websites. Same domain but different coding, navigation and structure. Old virtual website pages fail mobile friendly, they were not designed to be responsive ( there really is no way to fix them) but they are ranking and getting traffic. New virtual website pages pass mobile friendly but are not SEO optimized yet and are not ranking and not getting organic traffic. My understanding is NOT mobile friendly is a "site" designation and although the offending pages are listed it is not a "page" designation. Is this correct? If my understanding is true what would be the best way to hold onto the rankings and traffic generated by old virtual website pages and resolve the "NOT mobile friendly" problem until the new virtual website pages have surpassed the old pages in ranking and traffic? A proposal was made to redirect any mobile traffic on the old virtual website pages to mobile friendly pages. What will happen to SEO if this is done? The pages would pass mobile friendly because they would go to mobile friendly pages, I assume, but what about link equity? Would they see a drop in traffic ? Any thoughts? Thanks, Toni
Technical SEO | | Toni70 -
Subdomain redirect
Hey guys, I was thinking about creating subdomains for one of my websites. I want to divide my website in different subdomains (blog.[site].com / directory.[site].com / etc.) but I'm afraid that this will negatively impact my rankings. My blog for example has a lot of supporting content for my products and services that are primarily hosted on the homepage. Have you guys ever created subdomains at a later stage of your website's existence? What kind of impact did you notice? Would you recommend it? Thanks a million!
Technical SEO | | Nizar.1 -
Where is the 301 redirect?
Hi, in the last week I take an issue for 301 permanent redirect for a subfolder in the main website! In that folder i have a index.php file for a google map fullscreen edition and the only link who connects the wordpress website with the subfolder is only a direct link! Is that an error of seomoz app or something else? Thanks 1.jpg
Technical SEO | | petrospan0 -
302 redirect and NO DATA as HTTP Status in Top Pages in SEOMOZ Link Analysis
I recently performed a link analysis using SEOMOZ and my home page (top page) indicates that there is a 302 status. Is this bad? Also, 2 other key landing pages have [NO STATUS] as the http status and [NO DATA] for the page title. Could anyone offer insight into what might be happening here, and whether or not it's something that is potentially hurting us? Thanks for your help!
Technical SEO | | dstepchew0 -
Correct Redirect method for switching pages from .html to /pretty urls/
I have a customer that has all his site files as .html extensions and i'm going to rebuild this site into a wordpress site for easier management, regarding the new permalink structure, should i just do a 301 redirect on this?
Technical SEO | | tgr0ss0 -
Dynamic page
I have few pages on my site that are with this nature /locator/find?radius=60&zip=&state=FL I read at Google webmaster that they suggest not to change URL's like this "According to Google's Blog (link below) they are able to crawl the simplified dynamic URL just fine, and it is even encouraged to use a simple dynamic URL ( " It's much safer to serve us the original dynamic URL and let us handle the problem of detecting and avoiding problematic parameters. " ) _http://googlewebmastercentral.blogspot.com/2008/09/dynamic-urls-vs-static-urls.html _It can also actually lead to a decrease as per this line: " We might have problems crawling and ranking your dynamic URLs if you try to make your urls look static and in the process hide parameters which offer the Googlebot valuable information. "The URLs are already simplified without any extra parameters, which is the recommended structure from Google:"Does that mean I should avoid rewriting dynamic URLs at all?
Technical SEO | | ciznerguy
That's our recommendation, unless your rewrites are limited to removing unnecessary parameters, or you are very diligent in removing all parameters that could cause problems" I would love to get some opinions on this also please consider that those pages are not cached by Google for some reason.0 -
Redirect question
I would like to redirect http://example.com/index.html to http://www.example.com/ Is the code below correct ? RewriteEngine on RewriteCond %{HTTP_HOST}^example.comRewriteRule (.*) http://www.example.com/$1 [R=301,L] RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index.html\ HTTP/ RewriteRule ^index.html$ http://www.example.com/ [R=301,L]
Technical SEO | | seoug_20050 -
Redirecting a domain
I was setting up a new campaign and received the following error from Roger Robot. "We have detected that the domain www.sitename.com and the domain sitename.com both respond to web requests and do not redirect. Having two "twin" domains that both resolve forces them to battle for SERP positions, making your SEO efforts less effective. We suggest redirecting one, then entering the other here." I know about redirecting a PAGE using 301 Redirects and how to specify the www. canonical in Google webmaster tools, but is there a "DOMAIN" redirect that I'm missing. What would you suggest doing given the error message above. Thanks, Bill Sqnch.jpg
Technical SEO | | Marvo0