But it's not working for me. It only works on my TEST server which is RewriteCond %{HTTP_REFERER} !^https://xx.admin.yy.net/.*$ [NC,OR]
When I move my change to production with the following domains (RewriteCond %{HTTP_REFERER} !^https://www.strategy.domain.com [NC,OR] RewriteCond %{HTTP_REFERER} !^https://strategy.domain.com [NC]) , The video is not playing at all. No error messages.
RewriteEngine On
RewriteCond %{REQUEST_URI} \.(mp4|mp3|avi)$ [NC]
RewriteCond %{HTTP_REFERER} !^https://xx.admin.yy.net/.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} !^https://www\.strategy\.domain\.com [NC,OR]
RewriteCond %{HTTP_REFERER} !^https://strategy\.domain\.com [NC]
RewriteRule ^.* - [F,L]