I want to redirect any request from one domain to another but not request the page on the new domain or pass parameters. The closest I got was:
RedirectMatch permanent ^(.*)$ http://www.example.com
but this passes the parameters (e.g. ?param=one) which is messy.