Do my redirects on my homepage need to be 301?
-
Our domain name is something like www.I-am-cool.com but most people just type in iamcool.com After doing some research I found that those are 302 redirects and I think they should be 301. If I am correct do I need to redirect www.iamcool.com and iamcool.com or just one or the other?
-
That is exactly what I was looking for. Thank You.
-
Sorry, Niners, I wasn't clear you were talking about two different spellings of the domain as well as the www and non www versions. I had assumed that was just a typo. Sorry 'bout that.
So... if you own iamcool.com and i-am-cool-com, you essentially have four variations for the domain URL you need to address. The Search Engines consider each of these to be different sites:
- www.i-am-cool-com
- i-am-cool.com
- www.iamcool.com
- iamcool.com
Out of all of these, you're going to pick the one that is your primary site address. This will become what's known as your FQDN - Fully Qualified Domain Name. This will be the URL you use for EVERYTHING you control. All links will use this full version, it's what you'll put on business cards, in bio links on guest posts, everything.
Since you say that the version with the hyphens has been in existence the longest, I would recommend that become your primary. And further, I suspect that the www version of it probably has the most incoming links.
So,,, www.i-am-cool.com will become your primary site address - your FQDN. (Assuming you agree with what's stated above.)
Once that's decided, you now need to 301-redirect each of the other versions directly to that www.i-am-cool.com URL. (For example, you specifically want to avoid a situation where iamcoolcom redirects to www.iamcool,com, which then redirects again to the final www.i-am-cool.com.)
Once you've done the redirects, you'll want to keep a close eye on your Webmaster Tools and Analytics to make sure you're not getting 404s from pages not being caught by the redirects correctly. In addition, you can use the hostnames report in Analytics to make sure that only your FQDN is showing up, indicating all the other versions are redirecting correctly.
Hope that clears things up a little more.
Paul
-
definitely keep it then!
-
Changing it to a 301 makes sense. Do I need to change for both with the www and without? I have never quite figured out if that counts as two different urls or not.
-
The only reason we still use the one with the hyphens is because we have been using the same domain name for over ten years.
-
You definitely need to change the 302 to a 301 redirect, Niners. Typically, you check which version has the most incoming links already (since it's an existing site) and make that the primary address. Then you use the 301 redirect to point the other URL to the primary one.
Even though many people may directly type in the URL without the www, most people who are writing it as a link on a webpage will do it including the www. Having those incoming links avoid needing a redirect is more important than the folks typing in direct (since even 301s don't pass absolutely all the link authority.)
Make sense?
Paul
-
302 redirects do not pass PR so you need to 301 the site instead, if there is PR on that site. if not you can just point that domain at the DNS level and it will resolve.
but i would think the version without the hyphens is more desirable. why isn't that your main domain name? obviously you own both domains. people only use the hyphens when the domain name they want is already taken.
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
-
How long will old pages stay in Google's cache index. We have a new site that is two months old but we are seeing old pages even though we used 301 redirects.
Two months ago we launched a new website (same domain) and implemented 301 re-directs for all of the pages. Two months later we are still seeing old pages in Google's cache index. So how long should I tell the client this should take for them all to be removed in search?
Intermediate & Advanced SEO | | Liamis0 -
HTTPS & Redirects
Hi We're moving to https imminently & I wondered if anyone has advice on redirects. Obviously we'll be redirecting all http versions to https - but should I be checking how many redirects are in each chain and amending accordingly? If there's 4-5 in a chain, remove the middle unnecessary URLS ? Advice please 🙂
Intermediate & Advanced SEO | | BeckyKey0 -
SEO impact of 301 redirects based on IP addresses from a specific state
Hello Moz Community! We are facing an issue that may or may not be unique, but need some advice and/or clarification on the best way to address the issue. We recently rebranded and launched a new site under a new domain and things have been progressing well. However, despite all the up front legwork on trademarks and licensing, we have recently encountered a hiccup that forces us to revert to the old URL/branding for one specific state. This may be a temporary issue that lasts a couple of months or it could potentially be in the court system for a couple of years. One potential solution we have discussed is to redirect the new site to the old site based on IP addresses for the state in question. Looking for any guidance on what type of impact this may have on SEO. Also open to any other suggestions or guidance on dealing with this situation. Thanks
Intermediate & Advanced SEO | | VeteransFirstMarketing0 -
Effect Of Restoring Old Website After Implementing 301 Redirects
After redesigning my old Drupal website and launching a new "improved" Wordpress version the new version is performing badly. Ranking is poor and conversions don't occur. I realize that my new design is bad (no call to action, poor structure, text heavy). New business inquiries have ceased. The site contains 450 pages. After spending $25,000 and a year of my life I see the new version is not an improvement! What would be the effect of reinstating the old version of the site and doing 301 redirects back to it? Would the old rankings be restored? I need to decide whether I should revert or focus on fixing flaws in the improved design. Any thoughts?? Thanks,
Intermediate & Advanced SEO | | Kingalan1
Alan0 -
Redirection question
How would I redirect this URL: http://www.members.mysite.com/ to this URL: http://www.mysite.com/ ? I cant figure it out
Intermediate & Advanced SEO | | JohnPeters0 -
301 redirect w/ dynamic pages to static
I am trying to redirect old dynamically created pages to a new static one (single page). However, when I implement the redirects, it still uses part of the old dynamic url. For instance... dynamic.php?var=example1 dynamic.php?var=example2 dynamic.php?var=example3 should all redirect to: static.html. However, they are redirecting to: static.html?var=example1 static.html?var=example2 static.html?var=example3 The page is resolving fine, but I don't want google to misinterpret the new static page as numerous page with dup content. I tried this in PHP on the dynamic.php page as follows, but it the problem above persisted: header('HTTP/1.1 301 Moved Permanently');
Intermediate & Advanced SEO | | TheDude
header('Location: http://www.mysite.com/static.html'); I tried doing it in my .htaccess file as follows, but the problem persisted: redirect 301 /info/tool_stimulus.php?var=example1 http://www.mysite.com/static.html
redirect 301 /dynamic.php?var=example2 http://www.mysite.com/static.html Can anyone solve this in PHP or w/ htaccess? Help!!! 🙂0 -
Choose of destination for a 301 redirection
Hi, I had a website paris-football.com which ranked quite well on specific request as 'paris football" and "paris foot". I decided 2 months ago to stop this website as I had no time to update it and it was quite rubish in terms of content and make a redirection to a better quality website. I decided to redirect to the deep url http://www.sportytrader.com/paris-foot.php . The destination Url has not beneft from the redirection and has even seen its rankings drop since the redirection. do you think that it would have been better to redirect to the Home Page http://www.sportytrader.com ? Do you think that I can still change the destination url ? Thanks a lot for your help,
Intermediate & Advanced SEO | | jarnac0 -
Regarding 301 Redirect!
Hello, I heard that 301 redirect can be good for newly registered domain names can i buy a old domain name and put 301 redirect on it to my newly registered niche market domain name. Shall i buy only 1 domain name and put 301 redirect to my newly registered domain names or i can do this for more than 1 old domains i purchased?
Intermediate & Advanced SEO | | anand20100