![]() |
.htaccess and QuickTime question
Hi!
Playing around with .htaccess we had to find out that the activeX to play Quicktime .mov files does not transmit the http referer on Windows browsers. It does however transmit referers on Macintosh browsers. Anybody else noticed that before ... and has got a solution? Thank you! |
do you mean if you have your QT movies in a password protected directory that if I have the URL of the movie file I can see it without being prompted for a username and password?
never noticed that. |
No, it means that when I have a .htaccess file that tries to test for hotlinked movies I am not able to catch "no referers" because even properly linked movies have "no referer".
Normally I would expect my .htaccess to work like this: RewriteEngine on RewriteCond %{HTTP_REFERER} !^http://.*mydomain\.com*$ [NC] RewriteRule \.mov$ http://www.mydomain.com/forbidden.mov [R,L] But it does not work like this because on some browsers I _never_ receive a request with mydomain.com as a referer. Instead I have to do it like this: RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://.*mydomain\.com*$ [NC] RewriteRule \.mov$ http://www.mydomain.com/forbidden.mov [R,L] But this is dangerous because every user entering my .mov URL directly would get the movie. |
We have the solution. Let me know if you have any questions. [email protected]
|
Quote:
|
All times are GMT -7. The time now is 03:55 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123