linux作为Web服务器是如何进行默认首页设置的
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux作为Web服务器是如何进行默认首页设置的相关的知识,希望对你有一定的参考价值。
Linux系统下web服务器大多数都是Apache搭建的环境,下面是Apache环境web设置默认页面方法: 1、设置全局的web目录默认首页: DirectoryIndex indexphp indexphp4 indexphp3 indexcgi indexpl indexhtml indexhtm indexshtml indexphtmllinux作为Web服务器是如何进行默认首页设置的 参考技术A一般是在相关http服务器的配置文件中指定,例如nginx
http....
server
location /
root html;
index index.html index.htm index.php;
....
设置默认首页
web.xml(注意:默认首页路径不以斜杠开头)
在tomcat服务器中设置起始页
以上是关于linux作为Web服务器是如何进行默认首页设置的的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot 默认首页配置 Spring boot web默认首页配置 Spring boot web项目默认首页配置