故意把访问项目名称写错。
解决方法:
在tomcat的conf文件夹里面的web.xml文件的这个节点<web-app></web-app>里面加就行了:
加上<error-page>
<error-code>404</error-code>
<location>/index.jsp</location>
</error-page>
加上<error-page>
<error-code>404</error-code>
<location>/index.jsp</location>
</error-page>
index.jsp页面就是在tomcat的root文件夹下的页面;