Htaccess只用www重定向?

时间:2017-12-24 14:01:10

标签: php .htaccess redirect

我正在尝试以下列方式重定向我的域:

example1.com重定向到example2.com/example1

以及example1.com/anything重定向到example2.com/anything

我现在在example1.com域的根目录中有一个htacess文件,代码如下:

RewriteEngine On
RewriteRule ^(.*) http://www.example2.com/example1 [R=301]

哪个有效,那很好。

然后,我创建了多个目录,其中包含我需要重定向的/anything文件夹,并使用此代码将htaccess文件放入其中:

RewriteEngine On
RewriteRule ^(.*) http://www.example2.com/anything [R=301]

也可以,但只有我放www.example1.com/anythingexample1.com/anything将我重定向到example2.com/example1

如何修复this/possibly更简化的实现方式?

0 个答案:

没有答案