使用指令重写 URI

使用指令重写 URI

我想重写以下 URL:

http://example.com/contextpath/<token>/images/<image.png> 

http://example.com/contextpath/images/<image.png>

目标是删除 token 路径。并将静态资源的位置指向:

location /contextpath/images{
            root    "C:/Temp/images";
}

我怎样才能实现这个目标?

相关内容