Same problem here. After some research, this seems to be a 3 year error from Mozilla, as @Amalgovinus stated earlier.
We found a solution for this to execute a POST request instead of a GET request inside the flash. You should also pass in fake data, as a flash will automatically change your POST request to GET if there is no data to send on request here an example flash code to make this work:
var url = "http://exemple.com/myNotHotlinkedSong.mp3"; var myRequest:URLRequest = new URLRequest (url); myRequest.method = URLRequestMethod.POST;
Now we are happy to be able to use our .htaccess to avoid hotlinking even in FF, I hope others find this useful.
malko
source share