4
Apache Mod Rewrite needs to be enabled on your server which is not always the case. To test:
le="color: #000000"><?php 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.
le="color: #000000"><?php Options +FollowSymLinks rewriteEngine on rewriteRule ^noexist.html$ http://www.mysite.com/doesexist.html [L]