• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

How to block Hotlinks other site than my site using this chevereto?

lacloi

Chevereto Member
hello i just brought your chevereto ,

im using Vbulletin 4.1.5 this there an way i can add in hotlink ? blocking other using my chevereto

image upload nor other than my site ? that only can show on my site and block from other site... ? if they use

use the dir link image?
 
You don't have to replace the Chevereto htacces, you have to add the extra rules to it.

Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?mydomain1.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?mydomain2.com [NC]
RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L]
 
Back
Top