请问怎么让tomcat默认先访问index.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问怎么让tomcat默认先访问index.php相关的知识,希望对你有一定的参考价值。

在你应用的web.xml中加上如下信息
<welcome-file-list>
<welcome-file>这里是你要默认访问的连接</welcome-file>
</welcome-file-list>
参考技术A 在你应用的web.xml中加上如下信息
<welcome-file-list>
<welcome-file>这里是你要默认访问的连接</welcome-file>
</welcome-file-list>

nginx 默认访问index.php

代码

http {
    include       mime.types;
    default_type  application/octet-stream;


    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
   // 默认访问index.php
    index   index.php index.html index.htm;

    server {
    .... server 代码
      }
}   

 

如下

 

以上是关于请问怎么让tomcat默认先访问index.php的主要内容,如果未能解决你的问题,请参考以下文章

web项目部署在我的电脑上的tomcat中,怎样让其他用户访问我的项目

thinkphp3.2 不同入口文件如何进入默认的模块和控制器

如何打开index.php

Centos7 系统下怎么更改apache默认网站目录

Thinkphp源码分析系列–入口文件

我想在网站中加入访问量统计功能,就是让访客了解网站的访问量,请问如何实现