Depending on the browser, sometimes it works, some times it doesn't...
Options +FollowSymlinks
Options +Indexes
Options +Includes
RewriteEngine on
#Times out, dead link, redirects, or good link depending on browser.
Redirect /fake-file-name-here https://www.example.com/folder/file-file-file-file-file
#Creates a dead link. adds / to the final URL
Redirect /fake-file-name-here/ https://www.example.com/folder/file-file-file-file-file
ErrorDocument 404 http://www.example.com/
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]