nginx url 截取 第二个目录
时间: 2023-05-26 18:01:08 浏览: 125
nginx location中uri的截取的实现方法
A: 可以使用nginx的内置变量$uri和$uri_components来实现。假设访问的url为http://example.com/dir1/dir2/file.html,则以下配置可以截取出dir2:
location / {
# ...
set $second_dir "";
if ($uri_components ~ "^/([^/]+)/([^/]+)/") {
set $second_dir $2;
}
# $second_dir现在等于dir2
# ...
}
阅读全文