I have an issue with a website that I am currently trying to redirect. The client wants the home page to be redirected to one website, and all other website pages to another website. It is an e-commerce site. I know how to redirect just the home page to a specific page
RedirectMatch ^/$ http://www.new-website.com/
but I cannot find how to redirect all pages excluding the home page.
You can use this
RedirectMatch ^/$ http://site1.com/
RedirectMatch ^/(.+)$ http://site2.com/$1