我遇到问题是通过https
到达我的某个子域名。
考虑以下几个领域:
每当我尝试转到https://stuff.mydomain.com
时,都会显示来自主mydomain.com
的文件(db等),而不是stuff.mydomain.com
。希望这是有道理的。
我的主域名是使用PHP框架Yii 1.1.15
,并在网络根目录中使用以下.htaccess
:
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
# otherwise forward it to index.php
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
有什么想法吗?