I have some old .swf
files/links for a website and they currently lead to a 404 Not Found
page.
I was wondering if there was a simple way, using .htaccess
(or any other method you may recommend) to redirect these files/links to my websites homepage http:www.mysite.com/home
.
Example links:
http://www.mysite.com/folder/file.swf
http://www.mysite.com/file.swf
This should work:
RewriteEngine On
RewriteRule ^.*\.swf$ /home [R=301,L]