Mobile app version of vmapp.org
Login or Join
Kevin317

: How to tell Google that each subfolder is a different site? Otherwise, Google appends the main site's name to every other subfolder One of our Korean clients (who would like to remain unamed)

@Kevin317

Posted in: #GoogleSearch #Internationalization #Seo #Serps #Title

One of our Korean clients (who would like to remain unamed) has a problem with their section of their website (subfolder). They are part of an international organization. Let's call them "Foobar" for our purposes.

The setup
foobar.com (redirects to country site ie. foobar.com/usa/ if IP is detected from USA)
foobar.com/usa/ title tag shows <title>Foobar USA</title>
foobar.com/korea/ title tag shows <title>Foobar Korea</title>
foobar.com/japan/ title tag shows <title>Foobar Japan</title>
foobar.com/international/en/ title tag shows <title>Foobar International</title>

The problem

In Google's SERP, when searching "foobar korea" (for example), their pages under foobar.com/korea/ show up in search results with the Foobar USA appended to the titles of all countries' subfolder pages in the SERP (ie. Lorem Ipsum - Foobar Korea - Foobar USA instead of the original <title>Lorem Ipsum - Foobar Korea</title>). We don't mind the rewrite. Our problem is how do we tell Google that this subfolder belongs to Foobar Korea and not Foobar USA?

From our own experience, after Google realizes that the organization name already appears in the title tag, they don't append it again.

This problem also appears in other country sites like Japan, China, etc.

It seems like Google is convinced that the entire domain is Foobar USA. Since Googlebot crawls from mostly US IP addresses, when the crawler tries to get the root domain foobar.com, it gets 301 redirected to foobar.com/usa/ where it finds <title>Foobar USA</title> and this is exactly what is appended to every subfolder page title where it doesn't exist.

Our failed attempts

We have tried adding structured data to the HTML pages with the name Foobar Korea, but that had no effect.

We registered the property separately in Google Search Console, but that has no effect.

We also have registered the foobar.com/korea/ as a Google My Business with the name Foobar Korea.

Are there any other ways to let Google know that these are separate sites and not to use the same title for all subfolders?

Alternative solutions


From our own experience with another client, we know that if we change the main site foobar.com/usa/ to be just <title>Foobar</title> (essentially letting Google think that it is just Foobar and not Foobar USA), Google will append just Foobar to all subfolder page titles if that doesn't already exist in the title.
As @closetnoc mentioned in the comments, we can also try changing the title length of the main page from <title>Foobar Korea</title> to something like <title>Doing more foo than bar - Foobar Korea</title> to discourage Google from appending the incorrect site name. From our experience also, this works, but is seems more like hiding the problem instead of fixing the problem.


The best solution is to signal to Google that each subfolder is a different site.

Just to be clear: This issue is not about rewriting the whole title in SERP. This issue is about Google appending the incorrect organization name to the title. The question is asking how to let Google know that this subfolder is a different organization.

EDIT: November 27th

It's finally fixed. See answer

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Kevin317

3 Comments

Sorted by latest first Latest Oldest Best

 

@Moriarity557

We checked today on November 29th and the title in the SERP no longer has the - Foobar USA appended to the end. It is now just Foobar Korea (not Foobar Korea - Foobar USA).

Here is what we did


October 27th (Day 0) - Added the following structured data:

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "https://www.foobar.com/korea/",
"name": "Foobar Korea"
}
</script>

November 20th (Day 24) - Posted question here on Stack Exchange after no results.
November 24th (Day 28) - Our own research led us to add noodp <meta name="robots" content="noodp">. We are not sure if this really had any effect. It basically tells search engines not to use info from public directories as they may be outdated.
November 29th (Day 33) - Success! We checked Google SERP and the subfolder homepage foobar.com/korea/ no longer has the - Foobar USA appended to the end.


Extra notes


Even though we advised our client to annotate their pages with hreflang annotations, till this day, they have not yet done it. For the record, hreflang annotations was NOT used.
Title length was not changed. Page foobar.com/korea/ is still <title>Foobar Korea</title>.
No de-indexing and then re-indexing tactic was used.

10% popularity Vote Up Vote Down


 

@Debbie626

Within another context I have given these examples of how to use hreflang and canonical links. For your purpose I added structural data in the head section of both examples with meta tags indicating an organization name, brand and department:

Example of an English webpage
example.com/en/
<!DOCTYPE html>
<html lang="en">
<head itemscope itemtype="http://schema.org/Organization">
<title>English webpage</title>
<meta content="My English Organization" itemprop="name">
<meta content="My English Brand Name" itemprop="brand">
<meta content="My English Department" itemprop="department">
<link rel="canonical" href="http://example.com/en">
<link rel="alternate" href="http://example.com/en/" hreflang="en">
<link rel="alternate" href="http://example.com/nl/" hreflang="nl">
<link rel="alternate" href="http://example.com/en/" hreflang="x-default">
</head>
<body>
<p>This is a webpage written in English.
This page is also available in Dutch.
The default language of this page is English.
</body>
</html>


Example of a Dutch webpage
example.com/nl/
<!DOCTYPE html>
<html lang="nl">
<head itemscope itemtype="http://schema.org/Organization">
<title>Nederlandse webpagina</title>
<meta content="My Dutch Organization" itemprop="name">
<meta content="My Dutch Brand Name" itemprop="brand">
<meta content="My Dutch Department" itemprop="department">
<link rel="canonical" href="http://example.com/nl" >
<link rel="alternate" href="http://example.com/en/" hreflang="en">
<link rel="alternate" href="http://example.com/nl/" hreflang="nl">
<link rel="alternate" href="http://example.com/en/" hreflang="x-default">
</head>
<body>
<p>Dit is een Nederlandstalige web pagina.
Deze pagina is beschikbaar in het Engels.
De standaardtaal van deze pagina is Engels.
</body>
</html>


This should be enough for Google to determine which page to use for a given locale. The canonical link is important.

Structured data could be used in the head section, although search engines may consume this data as they wish. In my examples I added a type 'Organization' in the head in microdata format, and some properties of this type: name, brand, and department. If have checked my examples using Google's Structured Data Testing Tool; in this way you can check the interpretation of your data. The result in GSDTT of the first example - which looks good to me - is:
@type Organization
name My English Organization
brand
@type Thing
name My English Brand Name
department
@type Organization
name My English Department


It is up to you which properties from Organization you use. name seems most appropriate to me at first glance. You can find a full list of valid properties for this type at schema.org/Organization.

Additionally, I would recommend to create a sitemap, and update it when appropriate.

10% popularity Vote Up Vote Down


 

@Kaufman445

It is quite difficult to determine the cause without examining the source code.


I assume that your website has errors with canonical meta
links. Your web page for Korea foobar.com/korea/ should have
<link rel="canonical" href="www.foobar.com/korea/foobar-korea.html"
/>.
If your website is multi-lingual then use meta hreflang.
Also check your code 301. Maybe there are mistakes.


Addition


The main question is how do we indicate to Google that each subfolder is a different organization.


7 Common Hreflang Mistakes (and How to Fix Them) + Bonus Tip:


Not Using Canonical Tags and Hreflang Tags Together Correctly. The hreflang tag also can be used along with rel="canonical" annotations, but hreflang tags need to reference self-referential canonical URLs. For example, page A should have a canonical tag pointing to page A, page B should have a canonical tag pointing to page B, and page C should have a canonical tag pointing to page C. All three pages should have hreflang tags that mention all three of the pages in the group. You do NOT want to canonicalize only one version of a page in a page grouping, as that would interfere with hreflang annotations.


Apply meta hreflang and canonical to USA:

<link rel="canonical" href="www.foobar.com/usa/main.html" />
<link rel="alternate" href="www.foobar.com/usa/main.html" hreflang="en-us" />
<link rel="alternate" href="www.foobar.com/korea/main.html" hreflang="ko" />


Apply meta hreflang and canonical to Korea:

<link rel="canonical" href="www.foobar.com/korea/main.html" />
<link rel="alternate" href="www.foobar.com/korea/main.html" hreflang="ko" />
<link rel="alternate" href="www.foobar.com/usa/main.html" hreflang="en-us" />


Read more: Lang unicode ++ Getting hreflang Right: Examples and Insights for International SEO (Moz) ++ Hreflang и Canonical International SEO Test.

Apply structured data - property Organization for United States:

<section vocab="http://schema.org/" typeof="Organization">
<h1 property="name">Name</h1>
<p property=areaServed>(The geographic area where a service or offered item is providedfor example:) Throughout on the United States</p>
<section property="address" typeof="PostalAddress">
<h2 property="name">Main address</h2>
<p property="streetAddress">Address</p>
<p property="postalCode">Code</p>
<p property="addressLocality">City</p>
<p>USA<meta property=addressCountry content=US /></p>
</section>




Apply structured data - property Organization for South Korea:

<section vocab="http://schema.org/" typeof="Organization">
<h1 property="name">Name</h1>
<p property=areaServed>(The geographic area where a service or offered item is providedfor example:) Throughout on the South Korea</p>
<section property="address" typeof="PostalAddress">
<h2 property="name">Main address</h2>
<p property="streetAddress">Address</p>
<p property="postalCode">Code</p>
<p property="addressLocality">City</p>
<p>South Korea<meta property=addressCountry content=KR /></p>
</section>




Read more ISO 3166-2 of Wikipedia.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme