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]
任何人都可以复制或解释这个问题吗?
我知道这不是很多信息,但我想也许有人会知道调试它的方法。