💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] ## handle - 类似nginx 的location 语法 ``` handle [<matcher>] { <directives...> } ``` ### 实例 ``` handle /foo/* { file_server } handle { reverse_proxy 127.0.0.1:8080 } ``` ## handle_path - 与handle指令相同,但会隐式删除匹配的路径前缀 语法 ``` handle_path <path_matcher> { <directives...> } ``` ### 实例 ``` handle_path /prefix/* { ... } // 等效于 handle /prefix/* { uri strip_prefix /prefix ... } ```