Mobile app version of vmapp.org
Login or Join
Gail5422790

: Website disappeared from Google after redirecting Googlebot to HTML with only the metadata I want indexed I have a website on which I use a redirect only for Googlebot to a HTML file. It only

@Gail5422790

Posted in: #Googlebot #GoogleIndex #MetaTags #Seo

I have a website on which I use a redirect only for Googlebot to a HTML file. It only contains metadata that I want to show in the search results. I have removed everything else from the HTML:

<!DOCTYPE html>
<html data-n-head="">
<head>
<meta data-n-head="true" charset="utf-8">
<meta data-n-head="true" content="width=device-width,initial-scale=1" name="viewport">
<meta data-n-head="true" content="MyWebsite" name="description">
<meta data-n-head="true" content="MyWebsite" property="og:description">
<title data-n-head="true">MyWebsite</title>
</head>


Why can't I find the site on Google anymore when I search for the domain? Is Google not indexing it on purpose because it does not contain anything in the body?

I currently use the following rule in my web.config that redirects the bot to the HTML with the domain specific meta tags:

<rule name="Redirect Bots" stopProcessing="true">
<match url="^$"/>
<conditions logicalGrouping="MatchAny">
<add input="{HTTP_USER_AGENT}" pattern="(Googlebot)|(Bingbot)|(MSNBot)|(Facebot)|(facebookexternalhit)|(Twitterbot)|(Pinterest)" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/robots/{HTTP_HOST}/index.html"/>
</rule>

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Gail5422790

1 Comments

Sorted by latest first Latest Oldest Best

 

@Courtney195

You have to show Googlebot what the page will look like when it sends a visitor to it. Google will not send humans to pages that it doesn't know what is on those pages. When you redirect Googlebot to a file that just displays the meta description, Google thinks that these pages will only have meta content and therefore that's not very useful to visitors. Or worse, Google will know that you're showing it only meta content but that you're showing visitors more content than that.

You cannot hide the content from Google that you are going to show its users that it sends to your site. This will lead to automatic deindexing and traffic loss.

I understand that you have some sort of dynamically generating content on your pages that you're trying to show visitors based on where they are from, but you still have to give Google a better understanding of what the page will look like when they send a visitor there.

I'm not sure if experiments have been made about dynamically generated content targeting ip addresses of countries regarding SEO performance, but if that is what you are going for then you should do more research on this and whether that is going to work with Google.

The less content that you can show Google, the worse your SEO performance is going to be.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme