我安装了tomcat5.0,用http://localhost:8080访问一切正常(注:可访问tomcat5.0的欢迎页面)
我想解析到 http://www.xxxx.com
在server.xml里加了
<Host  name= "www.xx.com "  appBase= "D:\xx\WebRoot ">  
<Context  path= ""  docBase= "."/>  
</Host> WEB.XML加上 
  <welcome-file-list> 
    <welcome-file>index.jsp </welcome-file> 
  </welcome-file-list> 访问 http://localhost:8080也正常,但访问 http://www.xxxx.com:8080 就出现 HTTP Status 500 错误。
请高手指教。