一个子域不会加载到我的本地网络,但另一个子域将

时间:2013-08-07 19:23:41

标签: .htaccess http subdomain

http://client.henrybuilt.com/ - 不会加载到我的网络上(网络意味着互联网连接)(即使我可以在其他网络上加载)

http://presentation.henrybuilt.com/ - 在任何网络上加载

两者在我的控制面板中都具有相同的设置。

我的htaccess文件:

RewriteEngine On
 RewriteCond %{HTTP_HOST} ^client.henrybuilt.com
 RewriteCond %{REQUEST_URI} !subClient/
 RewriteRule ^(.*)$ subClient/$1 [L]

RewriteEngine On
 RewriteCond %{HTTP_HOST} ^presentation.henrybuilt.com
 RewriteCond %{REQUEST_URI} !presentation/
 RewriteRule ^(.*)$ presentation/$1 [L]

任何人都可以复制该问题或解释它吗?

我知道这些信息并不多,但我想也许有人会知道调试它的方法。

0 个答案:

没有答案