我在windows中安装了tomcat服务器。我在hosts文件中添加了test.example.com
字符串,因此我可以使用localhost:8080
和test.example.com:8080.
然后我在webapps文件夹中部署了一个war文件。现在,我可以使用网址localhost:8080/test
和test.example.com:8080/test
访问该应用程序。
此处,当我访问test.example.com:8080/test
时,该网址将localhost:8080/test/UI/Login
重定向到登录页面,但我希望它为test.example.com:8080/test/UI/Login
任何人都可以建议我如何使用localhost访问并且不更新现有的war文件。