noindex는 <meta> 태그 또는 HTTP 응답 헤더가 있는 규칙 집합이며 Google과 같이 noindex 규칙을 지원하는 검색엔진에서 콘텐츠의 색인을 생성하지 못하게 합니다. Googlebot이 페이지를 크롤링할 때 noindex 태그나 헤더를 추출하면 다른 사이트가 페이지에 연결되어 있는지와 관계없이 페이지 전체를 Google 검색 결과에서 제외합니다.
noindex를 사용하면 페이지별로 사이트 액세스 권한을 제어할 수 있으므로 서버에 대한 루트 액세스 권한이 없는 경우 유용합니다.
noindex 구현
noindex는 <meta> 태그 및 HTTP 응답 헤더의 두 가지 방법으로 구현할 수 있습니다. 두 방법의 효과는 동일하며 사이트에 더 편리하고 콘텐츠 유형에 적절한 방법을 선택하면 됩니다. Google은 robots.txt 파일에서 noindex 규칙을 지정하는 것을 지원하지 않습니다.
noindex 규칙을 색인 생성을 제어하는 다른 규칙과 결합할 수도 있습니다. 예를 들어 nofollow 힌트를 noindex 규칙인 <meta name="robots" content="noindex, nofollow" />와 결합할 수 있습니다.
<meta> 태그
noindex 규칙을 지원하는 모든 검색엔진이 사이트 페이지에서 색인을 생성하지 않도록 하려면 다음 <meta> 태그를 페이지의 <head> 섹션에 배치하세요.
<meta name="robots" content="noindex">
Google 웹 크롤러만 페이지의 색인을 생성하지 못하게 하려면 다음을 추가합니다.
<meta name="googlebot" content="noindex">
일부 검색엔진에서는 noindex 규칙을 다르게 해석할 수도 있습니다. 따라서 내 페이지가 다른 검색엔진의 검색 결과에는 여전히 표시될 수 있습니다.
<meta> 태그 대신 응답에 noindex 또는 none 값을 가진 X-Robots-Tag HTTP 헤더를 반환할 수 있습니다.
응답 헤더는 PDF, 동영상 파일, 이미지 파일 등 HTML이 아닌 리소스에 사용할 수 있습니다. 다음은 검색엔진이 페이지의 색인을 생성하지 않도록 지시하는 X-Robots-Tag 헤더가 있는 HTTP 응답의 예입니다.
<meta> 태그와 HTTP 헤더를 확인하려면 페이지를 크롤링해야 합니다. 페이지가 계속 검색 결과에 표시된다면 noindex 규칙을 추가한 이후 Goggle에서 페이지를 크롤링하지 않았기 때문일 수 있습니다. 인터넷에서 페이지의 중요도에 따라 Googlebot이 페이지를 다시 방문하는 데 몇 개월이 걸릴 수 있습니다. URL 검사 도구를 사용해 Google에 페이지를 다시 크롤링하도록 요청하세요.
Google 검색 결과에서 사이트 페이지를 신속하게 삭제해야 하는 경우 삭제에 관한 문서를 참고하세요.
robots.txt 파일에서 Google 웹 크롤러가 이 URL을 크롤링하지 못하도록 차단하여 Google에서 태그를 인식하지 못하는 경우에도 페이지가 검색 결과에 계속 표시됩니다. Google로부터의 페이지 차단을 해제하려면 robots.txt 파일을 수정해야 합니다.
마지막으로 noindex 규칙이 Googlebot에 표시되는지 확인하세요. noindex가 올바르게 구현되었는지 테스트하려면 URL 검사 도구를 사용하여 페이지를 크롤링하는 동안 Googlebot에서 수신한 HTML을 확인하세요.
Search Console에서 페이지 색인 생성 보고서를 사용하여 Googlebot이 noindex 규칙을 추출한 사이트 페이지를 모니터링할 수도 있습니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-08-04(UTC)"],[[["\u003cp\u003e\u003ccode\u003enoindex\u003c/code\u003e prevents search engines from indexing a webpage, removing it from search results even if other sites link to it.\u003c/p\u003e\n"],["\u003cp\u003eIt can be implemented using a \u003ccode\u003e<meta>\u003c/code\u003e tag in the HTML's \u003ccode\u003e<head>\u003c/code\u003e or as an \u003ccode\u003eX-Robots-Tag\u003c/code\u003e HTTP response header, allowing control without server root access.\u003c/p\u003e\n"],["\u003cp\u003eThe page must be accessible to crawlers and not blocked by robots.txt for \u003ccode\u003enoindex\u003c/code\u003e to function correctly; otherwise, it might still appear in search results.\u003c/p\u003e\n"],["\u003cp\u003eGoogle might take time to recrawl and reflect the \u003ccode\u003enoindex\u003c/code\u003e directive; the URL Inspection tool can expedite this process or troubleshoot issues.\u003c/p\u003e\n"],["\u003cp\u003eIf urgent removal from Google Search is needed, consult the documentation on removals, ensuring robots.txt isn't blocking the page from Googlebot.\u003c/p\u003e\n"]]],["The `noindex` rule, implemented via a `\u003cmeta\u003e` tag or HTTP header, prevents search engines like Google from indexing specific content. To work, the page must be accessible to crawlers and not blocked by `robots.txt`. Implementation options include adding `\u003cmeta name=\"robots\" content=\"noindex\"\u003e` to a page's `\u003chead\u003e` or using the `X-Robots-Tag: noindex` HTTP header. Crawlers must revisit the page after `noindex` is added, which can be sped up using the URL Inspection tool. The rules can be tested using the URL Inspection tool.\n"],null,["# Block Search Indexing with noindex | Google Search Central\n\nBlock Search indexing with `noindex`\n====================================\n\n\n`noindex` is a rule set with either a `\u003cmeta\u003e`\ntag or HTTP response header and is used to prevent indexing content by search engines that\nsupport the `noindex` rule, such as Google. When Googlebot crawls that page and\nextracts the tag or header, Google will drop that page entirely from Google Search results,\nregardless of whether other sites link to it.\n| **Important** : For the `noindex` rule to be effective, the page or resource **must not** be blocked by a robots.txt file, and it has to be otherwise accessible to the crawler. If the page is blocked by a robots.txt file or the crawler can't access the page, the crawler will never see the `noindex` rule, and the page can still appear in search results, for example if other pages link to it.\n\n\nUsing `noindex` is useful if you don't have root access to your server, as it\nallows you to control access to your site on a page-by-page basis.\n\nImplementing `noindex`\n----------------------\n\n\nThere are two ways to implement `noindex`: as a `\u003cmeta\u003e` tag and\nas an HTTP response header. They have the same effect; choose the method that is more\nconvenient for your site and appropriate for the content type. Specifying the\n`noindex` rule in the robots.txt file is not supported by Google.\n\n\nYou can also combine the `noindex` rule with other rules that control indexing. For\nexample, you can join a `nofollow` hint with a `noindex` rule:\n`\u003cmeta name=\"robots\" content=\"`**noindex, nofollow**`\" /\u003e`.\n\n### `\u003cmeta\u003e` tag\n\n\nTo prevent *all search engines* that support the `noindex` rule from indexing\na page on your site, place the following `\u003cmeta\u003e` tag into the\n`\u003chead\u003e` section of your page: \n\n```\n\u003cmeta name=\"robots\" content=\"noindex\"\u003e\n```\n\nTo prevent *only Google web crawlers* from indexing a page: \n\n```\n\u003cmeta name=\"googlebot\" content=\"noindex\"\u003e\n```\n\n\nBe aware that some search engines might interpret the\n`noindex` rule differently. As a result, it is possible that your page might\nstill appear in results from other search engines.\n\n\n[Read more about the `noindex` `\u003cmeta\u003e` tag](/search/docs/crawling-indexing/robots-meta-tag#robotsmeta).\n|\n| **If you use a CMS, such as Wix, WordPress, or Blogger** , you might not be able to edit\n| your HTML directly, or you might prefer not to. Instead, your CMS might have a search engine\n| settings page or some other mechanism to tell search engines about `meta` tags.\n|\n|\n| If you want to add a `meta` tag to your website, search for instructions\n| about modifying the `\u003chead\u003e` of your page on your CMS (for example,\n| search for \"wix add meta tags\").\n\n### HTTP response header\n\n\nInstead of a `\u003cmeta\u003e` tag, you can return an `X-Robots-Tag`\nHTTP header with a value of either `noindex` or `none` in your response.\nA response header can be used for non-HTML resources, such as PDFs, video files, and image\nfiles. Here's an example of an HTTP response with an `X-Robots-Tag` header\ninstructing search engines not to index a page: \n\n```\nHTTP/1.1 200 OK\n(...)\nX-Robots-Tag: noindex\n(...)\n```\n\n\n[Read more about the `noindex` response header](/search/docs/crawling-indexing/robots-meta-tag#xrobotstag).\n\n### Debugging `noindex` issues\n\n\nWe have to crawl your page in order to see `\u003cmeta\u003e` tags and HTTP headers. If\na page is still appearing in results, it's probably because we haven't crawled the page since\nyou added the `noindex` rule. Depending on the importance of the page on the\ninternet, it may take months for Googlebot to revisit a page. You can request that Google\nrecrawl a page using the\n[URL Inspection tool](https://support.google.com/webmasters/answer/9012289).\n\n\nIf you need to remove a page of your site quickly from Google's search results, see our\n[documentation about removals](/search/docs/crawling-indexing/remove-information).\n\n\nAnother reason could also be that the robots.txt file is blocking the URL from Google web\ncrawlers, so they can't see the tag. To unblock your page from Google, you must\n[edit your robots.txt file](/search/docs/crawling-indexing/robots/submit-updated-robots-txt).\n\n\nFinally, make sure that the `noindex` rule is visible to Googlebot. To test if your\n`noindex` implementation is correct, use the\n[URL Inspection tool](https://support.google.com/webmasters/answer/9012289)\nto see the HTML that Googlebot received while crawling the page.\nYou can also use the\n[Page Indexing report](https://support.google.com/webmasters/answer/7440203)\nin Search Console to monitor the pages on your site from which Googlebot extracted a\n`noindex` rule."]]