Google indiziert Bilder nicht

Im Wurzelverzeichnis gibt es die folgende .htaccess-Datei. In den
Unterverzeichnissen gibt es keine .htaccess-Datei. Woran könnte es
liegen? Der ursprüngliche Domainname wurde durch "TEST" ersetzt.
Code:
# RewriteEngine aktivieren
RewriteEngine On

# Weiterleitung von TEST.ch auf www.TEST.ch
RewriteCond %{HTTP_HOST} ^(www\.)?TEST\.ch$ [NC]
RewriteRule ^(.*)$ https://www.test.ch/$1 [R=301]

# Hotlinking-Schutz ohne Google & Bing zu blockieren
RewriteCond %{HTTP_USER_AGENT} Googlebot [OR]
RewriteCond %{HTTP_USER_AGENT} Googlebot-Image [OR]
RewriteCond %{HTTP_USER_AGENT} Bingbot [OR]
RewriteCond %{HTTP_USER_AGENT} DuckDuckBot [OR]
RewriteCond %{HTTP_USER_AGENT} Applebot [OR]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^https?://(www\.)?TEST\.ch [NC]
RewriteCond %{HTTP_REFERER} !^https?://(www\.)?google\.[a-z]+ [NC]
RewriteCond %{HTTP_REFERER} !^https?://(www\.)?bing\.[a-z]+ [NC]
RewriteCond %{HTTP_REFERER} !^https?://(www\.)?duckduckgo\.[a-z]+ [NC]
RewriteRule \.(jpg|jpeg|gif|png|bmp|avif|webp|svg|tiff)$ - [NC,L]

# HSTS Header hinzufuegen
Header always set Strict-Transport-Security "max-age=31536000; preload"

# Referrer-Policy Header hinzufuegen
Header set Referrer-Policy "strict-origin-when-cross-origin"

# X-Content-Type-Options Header hinzufuegen
Header set X-Content-Type-Options "nosniff"

# Hotlinking-Schutz: nur erlaubte Referrer
RewriteCond %{HTTP_REFERER} !^http://addon-wejudusicyonsite.wejudusi.cyon.site/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://addon-wejudusicyonsite.wejudusi.cyon.site$      [NC]
RewriteCond %{HTTP_REFERER} !^http://test.ch/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://TEST.ch$      [NC]
RewriteCond %{HTTP_REFERER} !^http://wejudusi.cyon.site/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://wejudusi.cyon.site$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.addon-wejudusicyonsite.wejudusi.cyon.site/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.addon-wejudusicyonsite.wejudusi.cyon.site$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.test.ch/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.TEST.ch$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.wejudusi.cyon.site/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.wejudusi.cyon.site$      [NC]
RewriteCond %{HTTP_REFERER} !^https://addon-wejudusicyonsite.wejudusi.cyon.site/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^https://addon-wejudusicyonsite.wejudusi.cyon.site$      [NC]
RewriteCond %{HTTP_REFERER} !^https://test.ch/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^https://TEST.ch$      [NC]
RewriteCond %{HTTP_REFERER} !^https://wejudusi.cyon.site/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^https://wejudusi.cyon.site$      [NC]
RewriteCond %{HTTP_REFERER} !^https://www.addon-wejudusicyonsite.wejudusi.cyon.site/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^https://www.addon-wejudusicyonsite.wejudusi.cyon.site$      [NC]
RewriteCond %{HTTP_REFERER} !^https://www.test.ch/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^https://www.TEST.ch$      [NC]
RewriteCond %{HTTP_REFERER} !^https://www.wejudusi.cyon.site/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^https://www.wejudusi.cyon.site$      [NC,OR]
RewriteCond %{HTTP_REFERER} ^$      [NC]

#Weiterleitung fuer gaengige Bildformate zu www.TEST.ch
RewriteRule .*\.(jpg|jpeg|gif|png|bmp|avif|svg|tiff|webp)$ https://www.test.ch [L,R=301, NC]

# Optional: Weiterleitung fuer andere Bildformate (z.B. SVG, TIFF, WEBP) zu www.TEST.ch
# RewriteRule .*\.(svg|tiff|webp)$ https://www.test.ch [L,R=301, NC]

# Kompression aktivieren (mod_deflate)
<IfModule mod_deflate.c>
    <IfModule mod_setenvif.c>
        <IfModule mod_headers.c>
            SetEnvIfNoCase ^(Accept-Encoding|X-Requested-With) ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
            RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
        </IfModule>
    </IfModule>
        <IfModule mod_filter.c>
    AddOutputFilterByType DEFLATE "application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rdf+xml application/rss+xml application/schema+json application/geo+json application/vnd.ms-fontobject application/wasm application/x-font-ttf application/x-javascript application/x-web-app-manifest+json application/xhtml+xml application/xml font/eot font/opentype font/otf font/ttf image/bmp image/svg+xml image/vnd.microsoft.icon image/x-icon image/avif image/webp text/cache-manifest text/calendar text/css text/html text/javascript text/plain text/markdown text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy text/xml"
</IfModule>
    <IfModule mod_mime.c>
        AddType image/avif .avif
        AddEncoding gzip              svgz
    </IfModule>
</IfModule>



# X-Frame-Options Header hinzufuegen
Header set X-Frame-Options "DENY"
 
Last edited by a moderator:
Anbei der Screenshot von der Google Search Console.
 

Attachments

  • Google Search Console.jpg
    Google Search Console.jpg
    37 KB · Views: 7
Ich dachte, es geht um Bilder, die nicht indiziert werden!?

Dann mache doch mal eine Abfrage auf ein existentes Bild:
curl -I -L -A " Googlebot" -H "Referer: https://www.google.de/" https://test.ch/BILDURL.png
 
Last edited:
Ich dachte, es geht um Bilder, die nicht indiziert werden!?

Dann mache doch mal eine Abfrage auf ein existentes Bild:
curl -I -L -A " Googlebot" -H "Referer: https://www.google.de/" https://test.ch/BILDURL.png

HTTP/2 301
date: Tue, 01 Apr 2025 16:29:19 GMT
location: https://www.test.ch
strict-transport-security: max-age=31536000; preload
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
x-frame-options: DENY
alt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"
 
Nach einer Umleitung auf diene Bilddatei sieht das aber nicht aus. Hast du eine URL genommen, die auch ein Bild beinhaltet?

Hast du überhaupt die Server-Konfiguration auf eine erweiterten Loglevel für mod_rewrite umgestellt und den Server neu gestartet?
 
Warum soll eigentlich bei dir alles per R=301 auf das Wurzelverzeichnis von test.ch umgeleitet werden?
Ich dachte, bestimmte Bilder sollen ausgeliefert werden, wenn Referrer und User-Agent passt.
 
Warum soll eigentlich bei dir alles per R=301 auf das Wurzelverzeichnis von test.ch umgeleitet werden?
Ich dachte, bestimmte Bilder sollen ausgeliefert werden, wenn Referrer und User-Agent passt.
Das soll dafür sorgen, dass Bilder nicht in in anderen Webseiten aufgerufen können. Google & Co. dürfen aber die Bilder sehen und indizieren.
 
Googlebot sendet meines Wissens keinen Referrer.
Was zeigt dann bei dir:

curl -I -L -A " Googlebot" https://deinedomain.ch/deinvorhandenesbild.png
 
Back
Top