我已经使用 mod_jk 配置了 apache,以将/taste
上下文重定向到我的应用程序服务器。现在我想创建一个虚拟主机,以便我的域名重定向到这个上下文。
我在 httpd.conf 中尝试了以下配置:
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.suitmytaste.com
ServerAlias suitmytaste.com *.suitmytaste.com
DocumentRoot /taste
</VirtualHost>
但是 apache 不接受 /taste 部分作为 DocumentRoot。如何配置它以便将虚拟主机重定向到 mod_jk 连接器?