Mobile app version of vmapp.org
Login or Join
Vandalay111

: Email private information appearing in Google Results I've got a major problem in that emails sent to our clients are showing up in Google's search results. For confidentiality reasons, I can't

@Vandalay111

Posted in: #Email #Google #GoogleSearch

I've got a major problem in that emails sent to our clients are showing up in Google's search results. For confidentiality reasons, I can't post those links (for risk that they get indexed here), but the format is something like this
www.abc.com/xxhh1213131

where xxhh1213131 is a unique "token" that for each of our recipients.

Any idea how this might be happening? We have a "view as webpage" link in our emails. Could this have happened from traffic to those links?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Vandalay111

1 Comments

Sorted by latest first Latest Oldest Best

 

@Kevin317

If the search engines can find the page those links are on and are not told to ignore those pages, they will index them like any other web document. <speculation>In your specific case they probably found them when the user went to view them. Either the browser or an extension in the browser sent tha information to Google and they then crawled those pages.</speculation>

If you do not want them indexed, and would like them to be removed, you need to tell the search engines to block them. There are several ways to do this:


1) Use robots.txt

2) Use meta tags

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


3) Use http headers

Header set x-robots-tag: noindex


4) Use rel="nofollow"

<a href="http://www.example.com/sample.html" rel="nofollow">Link to page I don't want indexed</a>


5) Place the content behind a login. Search engines (generally) do not
submit forms nor create accounts at websites.

6) Block the bots of all of the major search engines using .htaccess
but that would be tedious and prone to error if they change whatever
it is you would use to identify them (e.g. ip address, user agent).

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme