当前位置: 代码迷 >> WebSphere >> websphere shtml有关问题
  详细解决方案

websphere shtml有关问题

热度:10834   发布时间:2013-02-26 00:00:00.0
websphere shtml问题
这是我的配置文件web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" 
xmlns="http://java.sun.com/xml/ns/j2ee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

  <display-name>test</display-name>
  
<welcome-file-list>
<welcome-file>index.shtml</welcome-file>
</welcome-file-list>
<mime-mapping>
    <extension>shtml</extension>
    <mime-type>text/html</mime-type>
</mime-mapping>
</web-app>


网站放在tomcat下,在浏览器输入http://localhost:8080/test/  可以正常运行(嘻嘻!!)。
但是放在websphere 6.0下,,在浏览器输入http://localhost:9080/test/  就提示我下载文件(郁闷....),
下载回来的文件是没有执行过shtml命令的,里面的 include命令 都在。好像websphere跟本不认识shtml文件。
但输入http://localhost:9080/test/index.shtml 却可以正常运行,而且include也正常解析了(超郁闷!!)。

网上找了很久都没找着。。。到底怎么样才可以在websphere 6.0下,在浏览器输入http://localhost:9080/test/
访问成功。。。。跪求大虾帮忙。。。OTZ


------解决方案--------------------------------------------------------
自顶先。。。
  相关解决方案