我找不到任何方法来使带有和不带有斜杠的 url 重定向工作。
我想在 url 调用时完成它,example.com/info
并将example.com/info/
在example.com/info-page/
url 后面添加“-page”字符串。
location /info/ {
rewrite ^(/info)(.*)$ http://example.com/$1-page/ permanent;
}
我怎样才能做到这一点?
我找不到任何方法来使带有和不带有斜杠的 url 重定向工作。
我想在 url 调用时完成它,example.com/info
并将example.com/info/
在example.com/info-page/
url 后面添加“-page”字符串。
location /info/ {
rewrite ^(/info)(.*)$ http://example.com/$1-page/ permanent;
}
我怎样才能做到这一点?