# 已省略其他配置,只保留匹配步驟
# 訪問 https://www.xxx.com/test/1/ https://www.xxx.com/test/2/ ... 時,會跳轉 /www/demo/templates/index.html 目錄下的靜態頁面
server { location ~ ^/test/(\d+)/ { rewrite ^/test/(\d+)/$ /test/index.html last; } location = /test/index.html { alias /www/demo/templates/index.html; } }