在Nginx中,可以使用location指令來匹配多個路徑。可以通過以下方法來實現(xiàn):
使用正則表達式匹配多個路徑:
location ~ /(path1|path2|path3) {
# 配置項
}
使用通配符匹配多個路徑:
location /path* {
# 配置項
}
使用前綴匹配多個路徑:
location ^~ /path1/ {
# 配置項
}
location ^~ /path2/ {
# 配置項
}
location ^~ /path3/ {
# 配置項
}
請根據(jù)具體需求選擇適合的方式進行配置。