Hello.
I've started this web server. It's works great, but i have problem with hotlink protection.
In Virtual Hosts i have:
It's works, but i have in /home/services/httpd/html/banners/ my banners (*.gif, and *.swf). This files need to have Disable hotlink protection.
A lots of people links my baners in yourself sites, but now banners don't show
What is wrong ?? What I must change ?
In httpd.conf (Apache 2.0) i was:
Ps. Sorry for my english. I still learnt this language
I've started this web server. It's works great, but i have problem with hotlink protection.
In Virtual Hosts i have:
Code:
Enable Hotlink Protection Yes
Suffix jpeg, jpg
A lots of people links my baners in yourself sites, but now banners don't show
What is wrong ?? What I must change ?
In httpd.conf (Apache 2.0) i was:
Code:
LoadModule rewrite_module /usr/lib/apache/mod_rewrite.so
<Directory "/home/services/httpd/html/jpg/art">
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.net(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.ws(/)?.*$ [NC]
RewriteRule .*\.(jpg|jpeg)$ http://www.mydomain.net [R,NC]
</Directory>
<Directory "/home/services/httpd/html/jpg/wallpapers">
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.net(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.ws(/)?.*$ [NC]
RewriteRule .*\.(jpg|jpeg)$ http://www.mydomain.net [R,NC]
</Directory>