Hello.
I have to forward an existing website to another one.
I want to forward each and every request on the old site to the root of the new site.
Example:
http://oldsite.tld/index.php?mode=foo&action=bar
should be forwarded to http://newsite.tld/
and not http://newsite.tld/index.php?mode=foo&action=bar
.
Is this possible with .htaccess alone? I'd also have the possibility of using PHP.
Thanks.