答案 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