I want to convert this to nginx rules
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?domain.com [NC]
RewriteRule .(jpg|jpeg|png|gif)$ - [NC,F,L]
I’ve tried to put this on the web but I can not even open.
if ($http_referer !~ "^$"){
set $rule_0 1$rule_0;
}
if ($http_referer !~* "^http(s)?://(www.)?domain.com"){
set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
return 403;
break;
}
I would like .htaccess above script can work smoothly in nginx.
if there is something wrong please correct. and show me the correct script …
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi!
I’m guessing these rules are there to stop people from hotlinking images hosted on your site? In some cases, writing the rules with nginx in mind is better than converting already-written htaccess/Apache rules.
Luckily, nginx supports referrer whitelisting by default. Use the following code:
Make sure to restart nginx so that the changes take effect:
You can read more on nginx’s referer module here.