使用htaccess进行子域重定向

时间:2011-02-25 13:24:08

标签: .htaccess

2 个答案:

答案 0 :(得分:1)

我认为您正在尝试保护您的主页。把这个PHP代码放在index.php中。

header("Location: http://testing.domain.com/admin/index.php")  
exit;

如果您拥有管理文件夹中的所有内容,则可以使用此文件

Options -Indexes
RewriteEngine on                   
RewriteCond $1 !^(admin)
RewriteRule ^(.*)$ admin/index.php [L]

答案 1 :(得分:0)

将以下内容放入.htaccess文件

Redirect 301 http://testing.domain.com/ http://testing.domain.com/admin/index.php