4
Apache Mod Rewrite needs to be enabled on your server which is not always the case. To test:
rewriteEngine on
rewriteRule ^noexist.html$ http://www.mysite.com/doesexist.html [L]
Upload 'doesexist.html', request the page 'noexist.html' in your browser and you should be redirected.
If that doesn't work, try adding the 'symlinks' line, e.g.
Options +FollowSymLinks
rewriteEngine on
rewriteRule ^noexist.html$ http://www.mysite.com/doesexist.html [L]