Mobile app version of vmapp.org
Login or Join
Moriarity557

: Stop searches showing tld domain sites appearing as subdirectory of main holding site domain? I'm not sure if this is a problem specific to how my hosting is structured or not. Let's say the

@Moriarity557

Posted in: #Directory #Htaccess #MultipleDomains #RobotsTxt #Seo

I'm not sure if this is a problem specific to how my hosting is structured or not.

Let's say the main domain for my account is maindomain.com (for purpose of discussion).

I am building other sites, e.g. anothersite.com and website.com

The folder/directory structure on my hosting would therefore be:

maindomain.com (root)
+
+---> anothersite.com (subfolder)
+
+---> website.com (subfolder)


The domains are mapped such that they map to their respective folders. So for example, anothersite.com takes the visitor to the index.php in the folder anothersite.com.

However, in Google, as well as just search results for these sites and their content - anothersite.com and website.com (what I want), I also see results that include:


maindomain.com/anothersite.com
maindomain.com/website.com


Obviously this is not the way I want search data for these sites to occur. I would like them to be omitted from the search results.

How can the hosting be configured so that the results for each of these respective domains are separate, i.e. not concatenated, so if I search for items relating to these respective sites, I only get results for anothersite.com relevant to it, same for website.com and same for maindomain.com - also used itself.

Such a solution to this problem should not damage the results that I do want to see.

I'm aware of robots.txt but I'm not sure what I need to put in these to stop the mixed-up/concatenated searches without damaging the real results. Or even if all search engines obey them. Is there something I can also do with .htaccess?

As it is shared-hosting, I don't have complete control over how the folder/directories are structured for this hosting so I would have to stick with the structure but ideas as to how to get desirable search results are welcome.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Moriarity557

1 Comments

Sorted by latest first Latest Oldest Best

 

@Angela700

I'd advise you to add a rewrite rule to your webserver configuration so that URLs are rewritten thusly:

maindomain.com/anothersite.com --> anothersite.com
maindomain.com/anothersite.com/page.html --> anothersite.com/page.html
etc....


With a 301 Moved Permanently redirection.

This should cause Google to correct this as pages are recrawled.

You could also add these folders to your main domain's robots.txt file and forbid Google from crawling them (and rely on it finding that material again or promoting the 'direct' version). You can speed this up by using Google Webmaster to remove these folders from the main domain (although it is anyones guess as to how long it will take for the 'direct' sites to show up on their own in Google).

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme