I ma looking for help re hiding links

Hello to everyone
I run a website ( nowhere as good as this ) and I am in depserate need of help to be able to hide the links like cdrsoft does . Does anyone have any ideas that could help me ?
P.S Admin I sent you a pm in regards to this woody suggested I post a topic in here . Thanks woddy
 
W

WRFan

Guest
you could use an antileech script, but that can be cracked within a second, no matter how good it is. the best solution is to use a script which changes the url every day, like on www.cdrsoft.cc or to set up the server in such a way that it intercepts all calls and checks the referrer. can be done in the configuration or in the .htaccess file:

AuthUserFile /dev/null
AuthGroupFile /dev/null
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://127.0.0.1:81/.*$ [NC]
ReWriteRule .*\.(jpg|gif|zip)$ http://127.0.0.1:81/403.html [R,L]

this will allow download only from localhost, port 81. simply change this to your site's ip/name/port. this requires that your server supports this.
 
Top