求助,不太懂。 假设 https://abc.com/def/123.jpg 匹配到 def 该如何写?
1
wolegequ 2017-07-20 21:14:27 +08:00
google nginx location
|
4
cxbig 2017-07-20 21:35:08 +08:00
Google 一下能有多难?
需求不明确,你接下来要干什么? 基本匹配 location ~ ^/def/ {} 如果需要拿剩下的东西做进一步处理 location ~ ^/def/(.*)$ { // $1 }} |
5
zhs227 2017-07-21 09:34:43 +08:00 1
https://serverfault.com/questions/698355/nginx-extract-last-part-of-url
if ($request_uri ~* "([^/]*$)" ) { set $last_path_component $1; } 你要的是这种效果么。上面是取最后一部分,你要的是取第一部分,稍微改一下就好。 |