更新时间:2021年07月20日18时16分 来源:传智教育 浏览次数:
index指令
index:设置网站的默认首页
语法 | index file ...; |
默认值 | index index.html; |
位置 | http、server、location |
index后面可以跟多个设置,如果访问的时候没有指定具体访问的资源,则会依次进行查找,找到第一个为止。
举例说明:
location / { root /usr/local/nginx/html; index index.html index.htm; }
访问该location的时候,可以通过 http://ip:port/,地址后面如果不添加任何内容,则默认依次访问index.html和index.htm,找到第一个来进行返回
将本页面链接http://www.itcast.cn/news/20210720/18164551234.shtml发送给QQ:435946716,免费获取上面课程全套视频、笔记和源码。
猜你喜欢: