Prevent hotlinking of Amazon S3 files?
问题 I'd like to allow anyone to play a video located in my s3 on my site as the src on a <video> tag but not allow people to use it as a src on their site or to play the video directly by typing the url into the browser bar. I don't want people doing this: and I don't want the following HTML to appear on http:// your -site.com but only on http:// my -site.com: <html> <video src="https://s3.amazonaws.com/my-bucket/my-video.mp4"></video> </html> I've seen some SO links on this but I wanted to talk