我怎样才能将子域的所有页面重定向到子域?

时间:2010-12-04 18:23:30

标签: apache .htaccess redirect

这是我的问题: 假设我有一个sub-domain.domainXXZ.com,子域有很多页面,例如

http:// sub-domain.domainXXZ.com/ppph.html
http:// sub-domain.domainXXZ.com/ssph.html
http:// sub-domain.domainXXZ.com/ppp1.html
http:// sub-domain.domainXXZ.com/ppp2.html
...
http:// sub-domain.domainXXZ.com/pppn.html

我想302将此子域的所有页面重定向到http:// sub-domain.domainXXZ.com

如何在.htaccess文件中编写规则?

1 个答案:

答案 0 :(得分:0)

如果我理解你的问题,你想将网页从subdomain1.domain.com转发到subdomain2.domain.com吗?如果是的话,

RewriteEngine On
RewriteRule ^(.*)$ http://subdomain2.domainXXZ.com/$1 [R]

否则,如果您打算将所有页面重定向到根目录,

RewriteEngine On
RewriteRule ^(A-Za-z0-9\.)*$ http://subdomain.domainXXZ.com/ [R]

应该有效(尚未测试)。