nginx配置后不生效的问题

2023-12-28 15:31:37

?server {

? ? ? ? listen ? ? ? 80;

? ? ? ? server_name? xxx.i.sinotrans.com;

? ? ? ? location /test {

? ? ? ? ? ? root? ?/usr/local/nginx/html/test;

? ? ? ? ? ? index? index.html index.htm;

? ? ? ? }

?? }

?

-----改成下面 要不然 通过curl http://xxx.i.sinotrans.com/test/index.html 报404

server {

? ? ? ? listen ? ? ? 80;

? ? ? ? server_name? xxx.i.sinotrans.com;

? ? ? ? location /test {

? ? ? ? ? ? root ? html;

? ? ? ? ? ? index? index.html index.htm;

? ? ? ? }

?? }

文章来源:https://blog.csdn.net/fengbin2005/article/details/135268642
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。