为带有空格的 URL 创建 Nginx 重定向 (%20)

为带有空格的 URL 创建 Nginx 重定向 (%20)

我需要为 html 文件名中包含空格的 URL 创建重定向。

我需要与此等效的 nginx:

Redirect 301 "/Poorly Titled File.html" http://domain.com/new-url/

我努力了:

rewrite ^/Old\%20Page\%20Title.html$ $scheme://domain.com/new-url/ permanent;


location /Old\%20Page\%20Title.html{
return 301 $scheme://domain.com/new-url/;
}

无论是否转义 % 。

答案1

'在周围位置使用:

location '/Old Page Title.html' {
    return 301 $scheme://domain.com/new-url/;
}

另请参阅SO问题包含空白空间的 Nginx 重写

相关内容