我正在尝试从端口 80 的根上下文配置访问以重定向到我的 tomcat 应用程序。我的配置设置为
<VirtualHost *:80>
ServerName localhost
ErrorLog /var/log/apache2/ajp.error.log
CustomLog /var/log/apache2/ajp.log combined
<Proxy *>
AddDefaultCharset Off
Order deny,allow
Allow from all
</Proxy>
ProxyPass / ajp://localhost:8009/testApp
ProxyPassReverse / http://localhost/testApp
</VirtualHost>
这是正确的方法吗?它目前导致无限重定向循环。