我们正在迁移到一个新的服务器结构,我需要一些有关 htaccess 的帮助。我是 php 程序员,但绝不是 apache 专家。
这是简单的解释:
我需要将 www.oldsite.com 的根目录重定向到根目录 www.newsite.com。
特定目录 www.oldsite/dir1 重定向到新站点上的子域,如 newdomain.newsite.com
其他一切 www.oldsite.com/whatever/ 需要转到 apps.newsite.com/whatever/
我现在拥有的是:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule / http://www.newsite.com [L,R=301]
RewriteRule (.*)dir1/ http://newdomain.newsite.com [L,R=301]
RewriteRule (.*)$ http://apps.newsite.com/$1 [L,R=301]
但它没有像我想要的那样工作......
无论如何,任何和所有的帮助将不胜感激。
谢谢,-Orallo