• 欢迎资源文件


    欢迎资源文件

    • 一、
      前提:用户可以记住网站名,但是不会记住网站资源文件名。
    • 二、
      默认欢迎资源文件,用户发送了一个针对某个网站的【默认请求】时,此时由Http服务器自动从当前网站返回的资源文件。
      正常请求:http://localhost:8080/myWeb/index.html
      默认请求:http://localhost:8080/myWeb/
    • 三、
      Tomcat对于默认欢迎资源文件定位规则:
      1)规则位置:Tomcat安装位置:/conf/web.xml
      2)规则命令:
     <welcome-file-list>
         <welcome-file>index.html</welcome-file>
         <welcome-file>index.htm</welcome-file>
         <welcome-file>index.jsp</welcome-file>
     </welcome-file-list>
    
    • 四、
      设置当前网站的默认欢迎资源文件规则:
      1)规则位置:网站/web/WEB-INE/web.xml
      2)规则命令:
        <welcome-file-list>
            <welcome-file>login.html</welcome-file>
        </welcome-file-list>
    

    3)网站设置自定义默认文件定位规则,此时Tomcat自带定位规则将失效。

  • 相关阅读:
    bzoj 5455
    hdu 6705
    hdu 6706
    斜率优化
    bzoj3672
    bzoj1367
    bzoj2118
    bzoj2337
    Codeforces 1077D Cutting Out(二分答案)
    Codeforces 1079C Playing Piano(记忆化搜索)
  • 原文地址:https://www.cnblogs.com/yu011/p/13775897.html
Copyright © 2020-2023  润新知