htaccess redirection

前端 未结 7 1694
自闭症患者
自闭症患者 2020-12-20 19:16

I have a domain test.com

Now i have the latest files in test.com/backup/

Now , what i need is, when i type test.com

7条回答
  •  天涯浪人
    2020-12-20 19:40

    Add this to your htaccess file:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^www\.test\.com$
    RewriteRule ^$ http://www.test.com/backup/ [L,R=301]
    

提交回复
热议问题