NginX URL 重写正则表达式(去掉特殊字符 ://)

NginX URL rewrite regex (get rid of special characters ://)

提问人:Johnny Bravo 提问时间:11/8/2023 最后编辑:Johnny Bravo 更新时间:11/10/2023 访问量:16

问:

我正在尝试弄清楚如何使用 NginX 重写,以便我可以加载页面

https://example.com/page.php?url=https://www.domain2.com/1-2-3-4-5

使用此 URL

https://example.com/page/www.domain2.com/1-2-3-4-5

所以我要做的基本上是摆脱.php?url=https:/

谁能帮忙?

我试图遵循文档,但我想我太笨了。

我的重写规则如下所示:

location /page.php {
rewrite ^/page/(.*)$ /page.php?url=https://$1? last;
}

使用此规则,页面将改为加载索引。

nginx url-重写 ngx-http-rewrite-module

评论


答: 暂无答案