Mobile app version of vmapp.org
Login or Join
Lengel546

: Well you can't make the users browser redirect while they are on the other site. You can however make it send a different file instead of the SWF they are hotlinking to. RewriteEngine on

@Lengel546

Well you can't make the users browser redirect while they are on the other site. You can however make it send a different file instead of the SWF they are hotlinking to.

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?yourdomain.com [NC]
RewriteRule .(swf)$ yourdomain.com/blocked.swf [NC,R,L]


Just change yourdomain.com with your domain and blocked.swf to whatever file you want them to see instead.

In the future you can code something in your flash files that looks for the host name and redirects them I'm sure.

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Lengel546

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme