2012-11-30 147 views
2

我的主機上有幾個網站。他們中的大多數都有自己的域名。防止訪問主域名上的子域名的文件夾

我想阻止通過maindomain.com/subdomain訪問我的子域文件夾。

我想讓它能夠在可能的情況只能通過subdomain.maindomain.com打開

禁止訪問,或只是重定向到其子域。

回答

2
RewriteEngine on 
RewriteBase/

#if not already blog.website.com 
RewriteCond %{HTTP_HOST} !^blog\.website\.com$ [NC] 
#if request is for blog/, go to blog.website.com 
RewriteRule ^blog/$ http://blog.website.com [L,NC,R=301] 
+0

我想在笨使用它。我試過但沒有工作。 – Anupal

+0

Codeigniter有它自己的重寫系統,你可能在那裏發生衝突。 – Nutic

0

的htaccess:

RedirectMatch ^/subdomain/(.*)$ http://subdomain.mysite.com/$1 
相關問題