Search code examples
apache.htaccessmod-alias

Htaccess: how to redirect Urls?


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.


Solution

  • You can use this

    RedirectMatch ^/$ http://site1.com/
    RedirectMatch ^/(.+)$ http://site2.com/$1