健壮钢笔

文章
7
资源
0
加入时间
2年10月21天

nginx屏蔽指定接口(URL)

具体操作在nginx的配置文件nginx.conf文件的server节点中,添加一个location,示例如下:location /your url { return 403;}这里具体以nginx自带nginx.conf为例,屏蔽根URL路径/:屏蔽前location / { root html; index index.html index.htm;}访问nginx index.html页面结果如下:屏蔽后location / {