Using .htaccess, how do I permanently redirect all not found *.flv files in one directory to a 404.flv file in the same directory. For example:
If this file is not found: example.com/flv/*.flv
Use this file: example.com/flv/404.flv
Here's what I have so far (I'm very bad):
RewriteCond /flv/(.*).flv !-f
RewriteRule ^ /flv/404.flv [L,R=301]
Thanks