2

我正在尝试将温室的所有子域重定向到温室\测试站点,但我无法让它工作。

我不明白 DocumentRoot 和 VirtualDocumentRoot 之间的区别,不确定这是否有任何区别。

任何为什么它不工作的想法'testsite.hothouse'重定向很好。'test.hothouse' 或任何 subdomain.hothouse 没有(重定向到 'www.subdomain.hothouse')。

我花了一整天的时间来解决这个问题,我已经清除了所有浏览器缓存。顺便说一句,我正在使用 WAMP

DocumentRoot "D:\wamp\www" 
<Directory "D:\wamp\www"> 
    Options Indexes FollowSymLinks Includes ExecCGI 
    AllowOverride All 
    Order allow,deny 
    Allow from all 
</Directory>

<VirtualHost *:80>  
DocumentRoot "D:\wamp\www"
ServerName localhost
</VirtualHost>

<VirtualHost *:80>  
VirtualDocumentRoot "D:\wamp\www\hothouse\testsite"
ServerName testsite.hothouse
ServerAlias test.hothouse
</VirtualHost>

<VirtualHost *:80>
  VirtualDocumentRoot "D:\wamp\www\hothouse\testsite"
  ServerName subdomain.hothouse
  ServerAlias *.hothouse
</VirtualHost>
4

1 回答 1

0

问题不是 apache 设置,而是我没有更新我的 Windows 主机文件以重定向到本地主机。

于 2013-08-09T21:50:34.827 回答