2013年08月22日 星期四 13:48
If Extend模块是对原始的nginx的rewirte模块中的if指令进行扩展,具体如下:
语法 | ifall (condition 1) (condition 2) ... {...} |
默认值 | |
上下文 | Server, Location |
指定多个条件,如果所有的条件都为真,则执行{}中的指令。此命令的行为和原始的if命令一样,但是条件的操作符增加了:
举例:
ifall ($remote_addr = 192.168.1.1) ($http_user_agent ~ 'Mozilla') ($server_port > 808) { return 404; }
语法 | ifany (condition 1) (condition 2) ... {...} |
默认值 | |
上下文 | Server, Location |
指定多个条件,如果有任一条件为真,则执行{}中的指令。其他和ifall相同。
Zeuux © 2024
京ICP备05028076号