如何设置tomcat中的error页面跳转

如何设置tomcat中的error页面跳转,第1张

1)修改对应项目的WEB-INF/web.xml文件,在web.xml中加入如下代码

[html] view plain copy

<error-page>

<error-code>404</error-code>

<location>404Redirect.html</location>

</error-page>

2)在404Redirect.html中写入如下代码

[html] view plain copy

<html>

<head>

<meta http-equiv="refresh" content="0url=/"/>

</head>

</html>

现在想在远程的centos 的 tomcat ROOT下的应用实现

如:

在浏览器中输入 test.com

301跳转

http://www.test.com怎么做,tomcat貌似不能直接放.htaccess!!


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11044751.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-13
下一篇 2023-05-13

发表评论

登录后才能评论

评论列表(0条)

保存