Mobile app version of vmapp.org
Login or Join
Hamaas447

: In "Fetch as Google" I don't know why but when I execute "fetch as Google" it returns me HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html Content-Encoding: gzip Vary: Accept-Encoding

@Hamaas447

Posted in: #FetchAsGoogle #Google #GoogleSearchConsole #Noindex

I don't know why but when I execute "fetch as Google" it returns me

HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html
Content-Encoding: gzip
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5
Set-Cookie: ASPSESSIONIDQACRADAQ=ECAINNFBMGNDEPAEBKBLOBOP; path=/
X-Powered-By: ASP.NET
Date: Wed, 26 Jun 2013 15:18:29 GMT
Content-Length: 153

<meta name="robots" content="noindex">


The noindex doesn't exist.

Does anybody know what could be wrong?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamaas447

1 Comments

Sorted by latest first Latest Oldest Best

 

@Sarah324

Those are your page's HTTP headers, not your page's meta tag contents. That's why you don't see that tag's value there.

If you want that value sent with your headers then you cannot use HTML for this. You can accomplish it by using .htaccess, though:

Header set X-Robots-Tag "noindex"

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme