2

我的 httpd.conf 通用选项为:

<Location />
    ProxyPass http://localhost:8080/
    ProxyPassReverse http://localhost:8080/

</Location>

我想配置虚拟主机,其中包括

喜欢

<VirtualHost *:80>

        ServerName  www.localhost        
        ServerAlias locathost
        DocumentRoot "C:\wamp\www\tomcat"
   <Location />
    ProxyPass http://localhost:8080/
    ProxyPassReverse http://localhost:8080/

</Location>

<VirtualHost *:80>

同时,如果我调用其他虚拟主机,它应该通过端口 80 而不是 8080

喜欢

<VirtualHost *:80>

        ServerName  www.localhost2nd
        ServerAlias locathost2nd
        DocumentRoot "C:\wamp\www\phpapp"

<VirtualHost *:80>

所以我在我的配置中错过了什么它永远不会工作

4

0 回答 0