-
Meta Tag to Prevent Search Engine Botstmp 2023. 3. 15. 10:55
https://css-tricks.com/snippets/html/meta-tag-to-prevent-search-engine-bots/
Meta Tag to Prevent Search Engine Bots | CSS-Tricks
To prevent all search bots from indexing a page:
css-tricks.com
To prevent all search bots from indexing a page:
<meta name="robots" content="noindex">
To prevent just Google:
<meta name="googlebot" content="noindex">
If you have control over it, you probably want to add nofollow to links that point to that page as well:
<a href="privatepage.html" rel="nofollow">Link to private page</a>
Theoretically that’s not needed for Google, which claims to drop all pages with noindex from their directory. But there are more search engines out there and it doesn’t hurt.
'tmp' 카테고리의 다른 글
개발에 특화된 대화형 AI (0) 2023.04.03 [php] json_encode 옵션들과 사용법 (0) 2023.03.29 div.col*3>{$} (0) 2023.03.11 Google Analytics를 이해하는 데 필수적인 용어 (0) 2023.03.11 Tracking iframe interactions using GTM (0) 2023.03.08