我的主机上几乎没有网站。他们中的大多数都有自己的域。
我想阻止通过 maindomain.com/subdomain 访问我的子域文件夹。
我想让它只能通过 subdomain.maindomain.com 打开
如果可能,禁用访问,或者只是将其重定向到子域。
我的主机上几乎没有网站。他们中的大多数都有自己的域。
我想阻止通过 maindomain.com/subdomain 访问我的子域文件夹。
我想让它只能通过 subdomain.maindomain.com 打开
如果可能,禁用访问,或者只是将其重定向到子域。
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]
访问:
RedirectMatch ^/subdomain/(.*)$ http://subdomain.mysite.com/$1