我正在尝试将温室的所有子域重定向到温室\测试站点,但我无法让它工作。
我不明白 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>