prevent linking of images

  1. K

    Steps to prevent linking of images from website

    You can create .htaccess file and then add below code in that file: RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^https://(www.)?domain.com.*$ [NC] RewriteRule .(gif|jpg)$ – [F] Where domain.com is your domain.
Top