Nginx 将动态 URL 匹配到同一个文件

Nginx 将动态 URL 匹配到同一个文件

我想将以下所有 URL 匹配到?codes.html下的文件。/var/www/html

https://example.com/codes/ksy2ixd

https://example.com/codes/2shxhgw

https://example.com/codes/xhwhwnx

我已经尝试过以下

location ~ /codes(.*) {
      alias /var/www/html/;
      index codes.html;

但这会不断将 codes.html 附加到 URL 并导致重定向循环。

相关内容