我正在尝试以下列方式重定向我的域:
要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/anything
。 example1.com/anything
将我重定向到example2.com/example1
如何修复this/possibly
更简化的实现方式?