Hallo,
möchte das das Hotlinking von meinen Bilder verhindern, aber in der .htacess im Shopware 5 funktioniert das leider nicht , weiss aber nicht warum
hat das hier oben eingefügt.
Server is ubuntu 20.04
möchte das das Hotlinking von meinen Bilder verhindern, aber in der .htacess im Shopware 5 funktioniert das leider nicht , weiss aber nicht warum
hat das hier oben eingefügt.
Server is ubuntu 20.04
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^https://www\.meinshop\.com\.us.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://(www\.meine\.boutique [NC]
RewriteCond %{HTTP_REFERER} !^https://www\.google\..*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www\.bing\..*$ [NC]
RewriteCond %{REQUEST_URI} !^.*hotlink\.png$ [NC]
RewriteCond %{REQUEST_URI} !^.*msxfaq200x200\.png$ [NC]
RewriteRule ^.*\.(gif|jpg|png)$ https://www.shop.de/images/hotlink.png [NC,R,L]
</ifmodule>