Mobile app version of vmapp.org
Login or Join
Sue5673885

: How do sites avoid SEO issues and legalities with subdomain unique ids? I was looking through a few websites recently and noticed a trend I'm not sure I understand. Sites are creating unique

@Sue5673885

Posted in: #302Redirect #Apache #Htaccess #Redirects #Seo

I was looking through a few websites recently and noticed a trend I'm not sure I understand. Sites are creating unique referral URLs for customers in the form of: customname.site.com
(If somebody were to use www.site.com/customname it would function the same way).

I can see the sites are using 302 redirects at some point using Google Chrome then doing some sort of htaccess redirect, taking the sub domain name (custom name) and applying it as a referral parameter then keeping in session during the entire process.

However, there must be thousands of these custom URLs that people are typing in. How are each one of these "sub domains" not treated as separate URLs which in turn are redirected to the same page (in short, generating tons of links all pointing to the same page which Google would normally frown upon)? Additionally, the links also appear on the site themselves as click-able links so I'm not sure how these are not tracked.
Similarly, the "unique" URL is not indexed or cached in any Google search results.

How is this capability handled?


I know these are 302 redirects, I can see this on the sites network flow.
These links do in fact appear on the page itself because in some areas (for example, the bottom of the page may say: send this page to a friend! name.site.com/ which in turn would again redirect to something like www.site.com?id=name so the id value could be stored in session

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Sue5673885

2 Comments

Sorted by latest first Latest Oldest Best

 

@Moriarity557

There are not legality issues. Here is how it it breaks down:

From SEO Perspective
All content on Site.com affects the score. So Site.com/User/Frank affects the score of site.com. frank.site.com is treated by Google as a separate site. Gets its own Google page rank.

So here is the rule.
If you are running something you want indexed separately then use a subdomain.
A good example if you have a web application that builds sites for users. Frank.myfreesitecreator.com or bob.myfreesitecreator.com . Then frank could point a FQDN (domain name) to frank.myfreesitecreator.com and worry about his own seo score.

If you have a site where you want everything indexed in one big ball, then use URL folders. 302 redirects help Google understand what is going on. That is it. Google will index the final result.

10% popularity Vote Up Vote Down


 

@Mendez628

Similarly, the "unique" url is not indexed or cached in any Google search results. How is this capability handled?


Maybe the webmaster has excluded them, either with robots.txt or through Google Webmaster Tools.


Additionally, the links also appear on the site themselves as clickable links so I'm not sure how these are not tracked


Maybe... rel="nofollow"

And finally, the 302 redirect is passing the "juicy" to the main site.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme