我使用通配符目录到多个子域,但只有index.php
正常工作。例如:
*. example.com/index.php
其他文件内容显示为index.php
。
例如,如果我转到*.example.com/style.css
,则会显示index.php
个内容。为什么会这样?
这是我的.htacess
文件:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^([aA-zZ])$ index.php?siteName=$1
RewriteCond %{HTTP_HOST} ^(^.*)\.domain.com
RewriteRule (.*) index.php?siteName=%1