Mobile app version of vmapp.org
Login or Join
Vandalay111

: Are there any significant disadvantages of forwarding a naked domain to the www. homepage always? I have a website set up at www.example.com, and I have example.com set to redirect to www.example.com.

@Vandalay111

Posted in: #Domains #Seo

I have a website set up at example.com, and I have example.com set to redirect to example.com.
The problem is that it's set to redirect directly to the homepage. For example, example.com/page/123 takes you to example.com instead of example.com/page/123. The reason I'm doing this is because I don't have access to the .htaccess file, and the only solution I can use is setting up a 301 redirect.

My question is if this will negatively impact my SEO rating at all.

I never link to the non-www version of the site. It's mainly a convenient way to get to the homepage of the site, which is hosted at the version. I doubt anyone will take a link to a page, strip the and link to that version instead (which won't work). Thus, I don't think there are any cases of anyone using the naked domain to get to anything but the homepage of the site. Am I overlooking anything?

10.05% popularity Vote Up Vote Down


Login to follow query

More posts by @Vandalay111

5 Comments

Sorted by latest first Latest Oldest Best

 

@Pierce454

sub domains are good if you're dealing with cookies because you can then have say a resources. sub domain and any cookies from will not transfer over thus reducing overhead and improving performance. This of course applies to a full blown website that you can actively manipulate.

Also, I'm not sure what @DisgruntledGoat and @sholsinger are trying to say about the 301 redirect. 301 is permanent redirect and if you want to keep things permanent stick to it because your user's browsers will automatically hit the correct domain version every time they visit (except for the very first time).

And lastly, I think you're saying your links are hard coded to a domain, why don't you make them relative: /Something.html so they are host independent. SEO will not be affected by it if you're worried about that.

10% popularity Vote Up Vote Down


 

@Ogunnowo487

Using 301 redirects from foo.com/bar.html to foo.com/ effectively nullifies any benefit the link to foo.com/bar.html would have given you. Ideally you should - as mentioned above - find a way to redirect to the exact page on the foo.com/ site with either code or request your sysadmin / provider to create a better .htaccess/redirect for you to use.

10% popularity Vote Up Vote Down


 

@Yeniel560

I don't think it's a huge problem, as long as the majority of links to your site point to the www version. It's worth setting your preferred domain in Google Webmaster Tools.

If you have access to any scripting (e.g. PHP) on your site, you can add a script to the home page to handle anyone redirected from the non-www version. Check the REFERER header then redirect to the equivalent page on the www version.

This will only help users, not search engines, since they generally don't follow multiple redirects. Also, it's best to use a 302 redirect here, because having a 301 from a single URL (www.example.com) to different URLs each time will not work (browsers/SEs will cache the redirect).

10% popularity Vote Up Vote Down


 

@Ravi8258870

I would probably write some code to handle the redirect manually in that case.

As far as user experience, the user would much rather go to the correct location whether or not they put a in front.

As far as SEO, I guess it would marginally help your home page, but marginally hurt your sub-pages.

10% popularity Vote Up Vote Down


 

@Sarah324

The odds are it isn't be good because you're telling the search engines, and everyone who visits a non-www page, every non-www page has moved to the home page which isn't true. This may not be necessary since Blogger uses canonical URLs so you wouldn't have to worry about duplicate content potentially caused by the

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme