重写多个子域的网址

时间:2018-07-03 19:52:03

标签: php apache .htaccess mod-rewrite

我想将.htaccess中两个子域的url重写为

domain1.test.com-> domain1.test.com/test1

domain2.test.com-> domain2.test.com/test2

什么是合适的实现方式?

1 个答案:

答案 0 :(得分:0)

一种方法是:

RewriteCond %{HTTP_HOST} ^domain1.test.com$ [NC]
RewriteRule ^(.*)$ test1/$1 [NC,L]


RewriteCond %{HTTP_HOST} ^domain2.test.com$ [NC]
RewriteRule ^(.*)$ test2/$1 [NC,L]