I have an old site that I want to redirect into another site.
I have this on my old site:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newsite.com/$1 [R=301,L]
With this, whenever you visit a url from the old site, for example:
www.oldsite.com/hello.html it redirects to
www.newsite.com/hello.html
How to I set it up to redirect
www.oldsite.com/whatever.html to
www.oldsite.com/
?
Thanks