Nginx - 動態匹配路由中的ID並跳轉到靜態頁面

_Q發表於2024-03-27

# 已省略其他配置,只保留匹配步驟

# 訪問 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;
    }

}

相關文章