Steps to prevent linking of images from website

kumkumsharma

Administrator
Staff member
You can create .htaccess file and then add below code in that file:

Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^https://(www.)?domain.com.*$ [NC]
RewriteRule .(gif|jpg)$ – [F]
Where domain.com is your domain.
 
Top