码迷,mamicode.com
首页 > 其他好文 > 详细

Tomcat 部署 404问题

时间:2017-09-07 23:09:11      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:base   page   engine   配置   tee   writer   index   ase   html   

配置web.xml

<error-page>
    <error-code>404</error-code>
    <location>/index.html</location>
</error-page>

 

httpd.conf

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.html$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.html [L]
</IfModule>

Tomcat 部署 404问题

标签:base   page   engine   配置   tee   writer   index   ase   html   

原文地址:http://www.cnblogs.com/eason-d/p/7492191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!