컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
검색결과에서 사이트에 호스팅된 이미지 삭제하기
긴급 이미지 삭제
사이트에 호스팅된 이미지를 Google 검색결과에서 빠르게 삭제하려면 삭제 도구를 사용하세요.
긴급하지 않은 이미지 삭제 섹션에 설명된 대로 사이트에서 이미지를 삭제하거나 이미지를 차단하지 않는 한 삭제 요청이 만료되면 이미지가 Google 검색결과에 다시 표시될 수 있습니다.
긴급하지 않은 이미지 삭제
다음 두 가지 방법으로 Google 검색결과에서 사이트의 이미지를 삭제할 수 있습니다.
두 방법의 효과는 동일하며 사이트에 더 편리한 방법을 선택하면 됩니다.
Googlebot은 HTTP 헤더를 추출하기 위해 URL을 크롤링해야 하므로 두 방법을 동시에 구현하는 것은 적절하지 않습니다.
이미지를 호스팅하는 사이트(예: CDN)에 대한 액세스 권한이 없거나 CMS에서 noindex
X-Robots-Tag
HTTP 헤더 또는 robots.txt로 이미지를 차단하는 방법을 제공하지 않는 경우 사이트에서 이미지를 완전히 삭제해야 할 수도 있습니다.
robots.txt 규칙을 사용하여 이미지 삭제
사이트의 이미지가 Google 검색결과에 표시되지 않게 하려면 이미지를 호스팅하는 사이트의 루트(예: https://yoursite.example.com/robots.txt
)에 robots.txt 파일을 추가하세요. robots.txt 규칙을 사용하여 Google 검색결과에서 이미지를 삭제하면 삭제 도구를 사용하는 것보다 시간이 오래 걸리지만 와일드 카드를 사용하거나 하위 경로를 차단하여 보다 유연하게 제어할 수 있습니다. 또한 삭제 도구는 Google에만 적용되지만 이 방법은 모든 검색엔진에 적용됩니다.
예를 들어 Google이 사이트에 있는 dogs.jpg
이미지를 yoursite.example.com/images/dogs.jpg
에서 제외하기를 원한다면 robots.txt 파일에 다음을 추가합니다.
User-agent: Googlebot-Image
Disallow: /images/dogs.jpg
다음번에 Google에서 사용자의 dogs.jpg
이미지를 크롤링할 때 이 규칙을 발견하고 이미지를 검색결과에 표시하지 않습니다.
규칙에는 더 유연하게
제어할 수 있도록
특수문자가 포함될 수 있습니다. 특히 *
문자는 모든 문자 시퀀스와 일치하므로 하나의 규칙과 여러 이미지 경로를 일치시킬 수 있습니다.
Google 색인에서 사이트에 있는 여러 이미지를 삭제하려면 각 이미지별로
disallow
규칙을 추가하고 만약 이미지가 파일명의 접미사와 같은 공통된 패턴을 공유하고 있다면
파일 이름에 *
문자를 사용합니다. 예:
User-agent: Googlebot-Image
# Repeated 'disallow' rules for each image:
Disallow: /images/dogs.jpg
Disallow: /images/cats.jpg
Disallow: /images/llamas.jpg
# Wildcard character in the filename for
# images that share a common suffix. For example,
# animal-picture-UNICORN.jpg and
# animal-picture-SQUIRREL.jpg
# in the "images" directory
# will be matched by this pattern.
Disallow: /images/animal-picture-*.jpg
Google 색인에서 사이트에 있는 이미지를 모두 삭제하려면 robots.txt 파일에 다음 규칙을 추가합니다.
User-agent: Googlebot-Image
Disallow: /
.gif
이미지는 모두 제외하고 .jpg
이미지만 포함하는 등 특정 형식의 파일을 모두 삭제하려면 다음 robots.txt 항목을 사용합니다.
User-agent: Googlebot-Image
Disallow: /*.gif$
Googlebot-Image
를 User-agent
로 지정하면 이미지가 Google 이미지에서 제외됩니다. Google 검색 및 Google 이미지를 포함한 모든 Google 검색에서 이미지를 제외하려면 Googlebot
사용자 에이전트를 지정합니다.
noindex
X-Robots-Tag
HTTP 헤더로 이미지 삭제
삭제하려는 리소스의 HTTP 응답 헤더에 noindex
X-Robots-Tag
를 추가하여 Google 검색결과에서 사이트에 호스팅된 이미지를 삭제할 수도 있습니다. 이 경우에는 Googlebot이 noindex
규칙을 추출할 수 있도록 이미지 URL 크롤링을 허용해야 합니다. noindex
X-Robots-Tag
HTTP 응답 헤더를 구현하려면 noindex
에 관한 문서를 따르세요.
특정 페이지에 noimageindex
로봇 태그를 추가하면 해당 페이지에 삽입된 이미지의 색인이 생성되지 않습니다. 그러나 동일한 이미지가 다른 페이지에도 표시되는 경우 해당 페이지에서 색인이 생성될 수 있습니다. 이미지가 표시되는 위치와 관계없이 특정 이미지를 차단하려면 noindex
X-Robots-Tag
HTTP 응답 헤더를 사용합니다.
내가 소유하지 않은 사이트에서 이미지를 삭제하려면 어떻게 해야 하나요?
검색결과에서 이미지를 삭제하는 방법에 대한 Google 검색 도움말을 참고하세요.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-08-04(UTC)
[[["이해하기 쉬움","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\u003eRemove images from Google Search quickly using the Removals tool for emergencies, but note that images may reappear unless removed from your site or blocked.\u003c/p\u003e\n"],["\u003cp\u003eFor non-emergency removals, prevent images from appearing in Google Search using robots.txt disallow rules or the \u003ccode\u003enoindex\u003c/code\u003e \u003ccode\u003eX-Robots-Tag\u003c/code\u003e HTTP header, choosing the method best suited for your site.\u003c/p\u003e\n"],["\u003cp\u003eUse robots.txt to control which images Google can index by specifying rules for individual images, file types, or all images on your site within the robots.txt file.\u003c/p\u003e\n"],["\u003cp\u003eAlternatively, utilize the \u003ccode\u003enoindex\u003c/code\u003e \u003ccode\u003eX-Robots-Tag\u003c/code\u003e HTTP header to remove images from Google Search, ensuring Googlebot can crawl the image URLs to extract the rule.\u003c/p\u003e\n"],["\u003cp\u003eRefer to Google Search help documentation for guidance on removing images from properties you don't own.\u003c/p\u003e\n"]]],["To remove images from Google Search, use the Removals tool for quick removal, but note images may reappear. For a lasting solution, use `robots.txt` rules or the `noindex` `X-Robots-Tag` HTTP header. `robots.txt` blocks images using file paths or wildcards, and applies to all search engines. The `noindex` header prevents indexing but requires Googlebot to crawl the URLs. For images on others' sites, refer to Google's help documentation.\n"],null,["# Remove your own site's images from Google Search | Google Search Central\n\nRemove images hosted on your site from search results\n=====================================================\n\n| Trying to **remove images of yourself** ? See [Remove your personal information from Google](https://support.google.com/websearch/troubleshooter/3111061) instead.\n\nFor emergency image removal\n---------------------------\n\n\nTo quickly remove images hosted on your site from Google's search results, use the\n[Removals tool](https://support.google.com/webmasters/answer/9689846#zippy=%2Cimage-url).\nKeep in mind that unless you also remove the images from your site or otherwise block the images\nas described in the [non-emergency image removal section](#non-emergency-image-removal),\nthe images may resurface in Google's search results once the removal request expires.\n\nFor non-emergency image removal\n-------------------------------\n\n\nThere are two ways to remove images from your site from Google's search results:\n\n- [robots.txt disallow rules](#robotstxt)\n- [The `noindex` `X-Robots-Tag` HTTP header](#noindex)\n\n\nThe two methods have the same effect, choose the method that is more convenient for your site.\nKeep in mind that Googlebot has to crawl the URLs to extract the HTTP headers, so implementing\nboth methods at the same time doesn't make sense.\n\n\nIf you don't have access to the site that's hosting your images (for example a CDN) or your CMS\ndoesn't provide a way to block images with the `noindex` `X-Robots-Tag` HTTP\nheader or robots.txt, you might need to delete the images altogether from your site.\n\n### Remove images using robots.txt rules\n\n\nTo prevent images from your site appearing in Google's search results, add a\n[robots.txt](/search/docs/crawling-indexing/robots/intro) file to the root of the\nsite that hosts the image, for example `https://yoursite.example.com/robots.txt`. While\nit takes longer to remove an image from Google's search results using robots.txt rules than it\ndoes to use the Removals tool, it gives you more flexibility and control through the use of\nwildcards or subpath blocking. It also applies to all search engines, whereas the Removals tool\nonly applies to Google.\n\n\nFor example, if you want Google to exclude the `dogs.jpg` image that appears on your\nsite at `yoursite.example.com/images/dogs.jpg`, add the following to your robots.txt\nfile: \n\n```\nUser-agent: Googlebot-Image\nDisallow: /images/dogs.jpg\n```\n\n\nThe next time Google crawls the `dogs.jpg` image, we'll see this rule and drop your\nimage from our search results.\n\n\nRules may include\n[special characters](/search/docs/crawling-indexing/robots/robots_txt#url-matching-based-on-path-values)\nfor more flexibility and control. Specifically, the `*` character matches any sequence\nof characters which lets you to match multiple image paths with one rule.\n\n\nTo remove multiple images on your site from Google's index, add a `disallow` rule for\neach image, or if the images share a common pattern such as a suffix in the filename, use a\nthe `*` character in the filename. For example: \n\n```\nUser-agent: Googlebot-Image\n# Repeated 'disallow' rules for each image:\nDisallow: /images/dogs.jpg\nDisallow: /images/cats.jpg\nDisallow: /images/llamas.jpg\n\n# Wildcard character in the filename for\n# images that share a common suffix. For example,\n# animal-picture-UNICORN.jpg and\n# animal-picture-SQUIRREL.jpg\n# in the \"images\" directory\n# will be matched by this pattern.\nDisallow: /images/animal-picture-*.jpg\n```\n\n\nTo remove all the images on your site from our index, place the following rule in your robots.txt\nfile: \n\n```\nUser-agent: Googlebot-Image\nDisallow: /\n```\n\n\nTo remove all files of a specific file type (for example, to include `.jpg` but not\n`.gif` images), you'd use the following robots.txt entry: \n\n```\nUser-agent: Googlebot-Image\nDisallow: /*.gif$\n```\n\n\nBy specifying `Googlebot-Image` as the `User-agent`, the images will be\nexcluded from Google Images. If you would like to exclude the images from all Google searches\n(including Google Search and Google Images), specify the `Googlebot` user agent.\n\n### Remove images with the `noindex` `X-Robots-Tag` HTTP header\n\n\nAlternatively, you can remove images hosted on your site from Google's search results by\nadding the `noindex` `X-Robots-Tag` to the HTTP response headers of the\nimages you want to remove. In this case you must allow crawling the image URLs in order for\nGooglebot to be able to extract the `noindex` rule. To implement the\n`noindex` `X-Robots-Tag` HTTP response header,\n[follow our documentation about `noindex`](/search/docs/crawling-indexing/robots-meta-tag#xrobotstag-implementation).\n\n\nNote that adding the `noimageindex` robots tag to a particular page will also prevent\nthat images embedded in that page from getting indexed. However, if the same images also appear in\nother pages, they might get indexed through those pages. To make sure a particular image is\nblocked no matter where it appears, use the `noindex` `X-Robots-Tag` HTTP\nresponse header.\n\nHow do I remove images from properties that I don't own?\n--------------------------------------------------------\n\n\nSee the\n[Google Search help documentation on how to remove an image from search results](https://support.google.com/websearch/answer/4628134)."]]