htaccess redirect all pages to single page

前端 未结 5 798
野性不改
野性不改 2020-11-30 01:20

I want to redirect all of my old domain request to my new domain using htaccess file. Below is what I am using but it does not work if the page is not on the new site. For e

5条回答
  •  难免孤独
    2020-11-30 01:34

    This will direct everything from the old host to the root of the new host:

    RewriteEngine on
    RewriteCond %{http_host} ^www.old.com [NC,OR]
    RewriteCond %{http_host} ^old.com [NC]
    RewriteRule ^(.*)$ http://www.thenewdomain.org/ [R=301,NC,L]
    

提交回复
热议问题