301 redirect recommendations
-
One of our clients we are working on have two sites the main with a PR5 and a separate one with a PR4.
We are planning on doing a 301 from the PR4 to a page on the PR5
Is it best to do:
www.PR4.com ----> www.PR5.com/releveantPR4page
or
www.PR4.com/page ----> www.PR5.com/releveantPR4page
Most pages on the PR4 site can fit into one PR5 page logically. However the PR4 has an about us, contact us, blog/with posts, FAQ, Applications, Legal Resources which are all pretty out dated..
The PR4 site is kinda messy and we are not sure if it will be easy to 301 each page individually with the user in mind.
can we do a sitewide 301 redirect from the root PR4.com to a page PR/5.com/releveantPR4page and also do deeper 301's? PR4.com/PR4page ---> PR5.com/releveantPR4page
-
Both Lance and CleverPhD have some good points. Really go page by page and map out the entire domain. Both on the PR4 and PR5 sites. Create excel spreadsheets to align up the location and destination of your 301 redirects.
Then, calculate the # of pages you have listed on the PR4 site that need redirecting but really don't have a home. IF the number is small enough, just redirect those pages/URL's for visitors to the homepage. Google doesn't like mass 301 redirects to the homepage, but if those pages have small inbound links, and some value - that will get pushed back to the main index URL.
You could also let it 404 as CleverPhD said, but what I would map out, is a kick-ass 404 redirect page. Include elements like a search function for people to look for new content, add a link to a form that people can fill out to advise of the 404 error. Offer up alternatives and/or pages-URL's that might offer something similar. Have fun with it and add some creativity to help convert those almost lost users to possibly visitors and then clients. Don't just let the 404 page be the end all of the site visit. I have found by really focusing on 404 error page improvements, you can improve both the bounce and exit rates of said pages, and as a result retain users that become clients in the end - all because you were able to take the time to build something that caught their attention, and thus - kept them inside the site Some great examples of creative 404 errors might include this or some creatively funny ones like that. This is another one I liked here.
Hope some of that helps Cheers!
-
I would consider the ROI of the redirect. If a specific page flows a bunch of link juice and on terms important to the business then redirect to the best page. After a point, the rest won't return enough value for your client to be charged at your hourly rate.
-
You want to go page to page (your second example) as much as possible. Google prefers more of a one to one vs a many to one relationship with 301 redirects. That said, if you have a bunch of garbage pages with garbage links with not much traffic to them, you may just want to let them 404 and die out of the index. Take some time looking at your Analytics and you may find you can just drop those pages.
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
-
Will 301 Redirects Slow Page Speed?
We have a lot of subdomains that we are switching to subfolders and need to 301 redirect all the pages from those subdomains to the new URL. We have over 1000 that need to be implemented. So, will 301 redirects slow the page speed regardless of which URL the user comes through? Or, as the old urls are dropped from Google's index and bypassed as the new URLs take over in the SERPs, will those redirects then have no effect on page speed? Trying to find a clear answer to this and have yet to find a good answer
Intermediate & Advanced SEO | | MJTrevens0 -
301 Redirect / Canonical loop on home page?
Hi there, My client just launched a new site and the CMS requires that the home page goes to a subfolder - clientsite.com/store. Currently there is a redirect in place such that clientsite.com -> clientsite.com/store. However, I want clientsite.com to be the canonical version of the URL. What should I do in this case, given that there is now a loop between the redirected page and the canonical page?
Intermediate & Advanced SEO | | FPD_NYC0 -
Recommended SEO companies
I'm trying to find SEO companies to partner with. Are they any you can recommend that are near San Diego?
Intermediate & Advanced SEO | | RoniHicksAssociates0 -
301 redirect with /? in URL
For a Wordpress site that has the ending / in the URL with a ? after it... how can you do a 301 redirect to strip off anything after the / For example how to take this URL domain.com/article-name/?utm_source=feedburner and 301 to this URL domain.com/article-name/ Thank you for the help
Intermediate & Advanced SEO | | COEDMediaGroup0 -
Redirect 301
Hi, I `m redirecting some pages in htaccess The first 15 pages that i redirected it worked. But the last 3 dont work, and i cant figure it out why it is not working. Redirect 301 /analyseverktoy/ /webanalyse
Intermediate & Advanced SEO | | SGacic
Redirect 301 /index.php/ledige-stillinger/ /
Redirect 301 /?page_id=352/ / Anu suggestions?0 -
For a mobile website, is it better to use a 301 vs. a 302 redirect?
We are vetting a vendor for our mobile website and they are recommending using a 302 redirect with rel=canonical vs. a 301 redirect due to 301 caching issues. All the research I've done shows that a 301 is by far the better way to go do to proper indexing, which in turn will enhance our page authority. Thoughts on why a 302 would be a better fit than a 301 on our mobile site?
Intermediate & Advanced SEO | | seohdsupply1 -
How to 301 redirect all URLs with /? in?
I want to redirect all URLs that have /? in it. Indexed in Google is a bunch of urls lik: mysite.com/?674764 mysite.com/?rtf8y78 I want all these URLs to be redirected to my home page. Any ideas?
Intermediate & Advanced SEO | | JohnPeters0 -
Warning about a 302 redirect
Hello everyone, I'm testing the pro software and recently I installed an SSL Certificate on one of the websites I'm monitoring, I put in place an .htaccess directive to force all traffic to the secure version of the site (https) and I noticed how this raised a warning because my directive is forcing the traffic with a 302 redirect. These are the lines: _RewriteCond %{SERVER_PORT} 80 _ RewriteRule ^(.*)$ https://example.com/$1 [R,L] I understand that this is not good so I figured since I'm already redirecting all www to -www I can force traffic that arrives trying to use www to the secure version like so: RewriteCond %{HTTP_HOST} !^example.com$ RewriteRule (.*) https://example.com/$1 [R=301,L] But this is not 100% effective because if someone visits the site directly on the -www version this person wont get redirected hence it wont be forced to see the https. So my question is: does anybody know of an alternate way to force traffic to the secure socket using a 301 instead of a 302? Oh boy, just by writing the question I think I may have figured it out, I'll post it anyways because (1) I could be wrong and (2) It could help someone else. It just hit me but the directive that is forcing www to -www specifies what type of redirect to do here [R=301,L]. So to try to answer my own question before even posting it this could probably do the trick: _RewriteCond %{SERVER_PORT} 80 _ _RewriteRule ^(.*)$ https://example.com/$1 [_R=301,R,L] I'll be testing it out ASAP and again I'll post the question anyways just in case it doesn't work, in case someone has a good suggestion or to help someone that could be in the same situation. If this is turns out right I will need someone to slap me in the face 😐
Intermediate & Advanced SEO | | stevenpicado0