2020
09-29
09-29
nginx屏蔽指定接口(URL)的操作方式
一、前言有时候,web平台上线后,需要屏蔽某个服务接口,但又不想重新上线,可以采用nginx屏蔽指定平台接口的办法。二、具体操作在nginx的配置文件nginx.conf文件的server节点中,添加一个location,示例如下:location/yoururl{return403;}这里具体以nginx自带nginx.conf为例,屏蔽根URL路径/:屏蔽前location/{roothtml;indexindex.htmlindex.htm;}访问nginxindex.html页面结果如下:屏蔽后location/{retur...
继续阅读 >