nginx 匹配网站首页
要匹配网站首页,可以使用nginx的location指令来实现,示例代码如下:
server {
listen 80;
server_name example.com;
location / {
root /var/www/example.com;
index index.html;
}
}
在上面的示例中,location指令指定了匹配根路径"/",也就是匹配网站首页。其中,root指令指定了网站根目录,index指令指定了默认的首页文件名为index.html。当用户访问网站首页时,nginx会自动寻找并返回该文件。
原文地址: https://www.cveoy.top/t/topic/bG6E 著作权归作者所有。请勿转载和采集!