How to stop google and bing from indexing my certain posts?

dlyhai

Elite Member
Joined
May 31, 2015
Messages
3,499
Reaction score
515
I have some articles, i don't want to google and Bing index them, how can I stop it? thanks
 
1. Robots.txt File
Edit the robots.txt file, and add lines:
User-agent: *
Disallow: /
(Replace / with the path to the specific articles.)

2. Meta Tags
Use <meta name="robots" content="noindex"> in the <head> section of your HTML for each article you want to hide.
 
1. Robots.txt File
Edit the robots.txt file, and add lines:
User-agent: *
Disallow: /
(Replace / with the path to the specific articles.)

2. Meta Tags
Use <meta name="robots" content="noindex"> in the <head> section of your HTML for each article you want to hide.
If I want to make my one categary like cats to noindex from google and bing, I add lines in Robots.txt

Disallow: /cats/

rights?

2

all posts use one Meta Tags, I can't edit it for one post, any method? thanks
 
You can use the noindex directive or disallow specific content in your robots.txt file. This helps prevent search engines from indexing the site.
 
Add a noindex meta tag to the &lt;head&gt; section of the specific pages/posts you don't want to be indexed.

Example:

html

<span>&lt;<span>meta</span> <span>name</span>=<span>"robots"</span> <span>content</span>=<span>"noindex, nofollow"</span>&gt;</span>
 
Use a robots.txt file to disallow search engines or add a &lt;meta name="robots" content="noindex"&gt; tag to the articles. This should prevent indexing by Google and Bing.
 
Add a noindex meta tag to the &lt;head&gt; section of the specific pages/posts you don't want to be indexed.

Example:

html

<span>&lt;<span>meta</span> <span>name</span>=<span>"robots"</span> <span>content</span>=<span>"noindex, nofollow"</span>&gt;</span>

Use a robots.txt file to disallow search engines or add a &lt;meta name="robots" content="noindex"&gt; tag to the articles. This should prevent indexing by Google and Bing.

How can I add meta name="robot" on certain posts? thanks
 
Back
Top