Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Noindex
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Noindexing entire pages == <syntaxhighlight lang="html"> <html> <head> <meta name="robots" content="noindex"> <title>Don't index this page</title> </head> </syntaxhighlight> Possible values for the meta tag content are: "none", "all", "index", "noindex", "nofollow", and "follow". A combination of the values is also possible,<ref name="W3spec" /> for example: <syntaxhighlight lang="html"> <meta name="robots" content="noindex, follow"> </syntaxhighlight> === Bot-specific directives === The noindex directive can be restricted only to certain bots by specifying a different "name" value in the meta tag. For example, to specifically block Google's bot,<ref name="google_noindex">[http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=93710 Using meta tags to block access to your site], Google Webmasters Tools Help</ref> specify: <syntaxhighlight lang="html"> <meta name="googlebot" content="noindex"> </syntaxhighlight> Or, to block Bing's bot, specify: <syntaxhighlight lang="html"> <meta name="bingbot" content="noindex"> </syntaxhighlight> Or, to block Baidu's bot, specify: <syntaxhighlight lang="html"> <meta name="baiduspider" content="noindex"> </syntaxhighlight> === robots.txt file === A [[Robots exclusion standard|robots.txt]] file can be used to block crawling.
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)