htaccess在https

时间:2016-01-14 21:18:33

标签: apache .htaccess mod-rewrite yii

我遇到问题是通过https到达我的某个子域名。

考虑以下几个领域:

  • mydomain.com
  • tasks.mydomain.com
  • stuff.mydomain.com

每当我尝试转到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]

有什么想法吗?

0 个答案:

没有答案