how can i totaly hide page from google?

vldsam95

Power Member
Joined
May 27, 2018
Messages
583
Reaction score
43
hello
i want to ask how i can make a page that google will have access to it?
i know that there is a noindex tag
but google still can visit this page, it just wont index it

so is there someway to hide from google the content? i mean like make it in image or something?
 
thank you for the answer
so you say that i can't really know if google is reading the content or not
I'm saying that even if you request that search engines ignore your site - they are not obliged to do so. Take a look at the image I lined, it says that "Its up to search engines to honor this request". If you want to be sure, password protect the whole site.
 
if you are using Wordpress go to settings then readings and select Discourage search engines from indexing this site
 
You can definitely hide your pages and content from Google. You can do this by using your site’s robots.txt file or using HTML meta tags. If you are using Wordpress platform, you can install a plugin Yoast SEO and there is an option in the Advanced settings in Meta Box. In "Meta Robot Index" dropdown, select "noindex" and in the "Meta robots follow" select "nofollow". This will hide your page and contents from indexing and reading by Google.
 
I Think Robot.txt Can Help You!

if you are using Wordpress go to settings then readings and select Discourage search engines from indexing this site

You can definitely hide your pages and content from Google. You can do this by using your site’s robots.txt file or using HTML meta tags. If you are using Wordpress platform, you can install a plugin Yoast SEO and there is an option in the Advanced settings in Meta Box. In "Meta Robot Index" dropdown, select "noindex" and in the "Meta robots follow" select "nofollow". This will hide your page and contents from indexing and reading by Google.

but as i know the meta tags - noindex and the wordpress function are just a request from the bots for no index the page

i know that a noindex page would not appear at the results
but how can i be sure that although my request google would not visit/read the content of that page? (in case that i dont use password on my site)

is there someway to to ensure that google would not be able to read the content/links on the page?
 
hello
i want to ask how i can make a page that google will have access to it?
i know that there is a noindex tag
but google still can visit this page, it just wont index it

so is there someway to hide from google the content? i mean like make it in image or something?
You can discourage indexing via wordpress dashboard
 
add this to your htaccess file

RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} AltaVista [OR]
RewriteCond %{HTTP_USER_AGENT} Googlebot [OR]
RewriteCond %{HTTP_USER_AGENT} msnbot [OR]
RewriteCond %{HTTP_USER_AGENT} Slurp
RewriteRule ^.*$ "http\:\/\/htmlremix\.com" [R=301,L]

replace the url in the last line with your domain.
 
You can do this easily on server level via .htaccess file.

Make sure you only do the specific page or you might de-index your whole website :)
 
Back
Top