如何使用特殊字符%ef%bb%bf重定向URL?

问题描述 投票:0回答:1

我在Wordpress网站上有URL末尾带有%ef%bb%bf的链接,我直接在数据库上更改了链接,但知道我必须将旧链接重定向到新版本。

我通过.htaccess尝试过,但是没有用:

Redirect 301 /category/old-uri%ef%bb%bf/ https://example.com/category/new-uri

我也尝试了不同的变体,但没有任何效果。

你有想法吗?

谢谢

php wordpress .htaccess url special-characters
1个回答
0
投票

您必须添加B重写标志。该标志告诉mod_rewrite逃逸反向引用,如@Accountant链接中的this answer中所述。

Redirect 301 /category/old-uri%ef%bb%bf/ https://example.com/category/new-uri [B]

将引导您进入新的URL https://example.com/category/new-uri

© www.soinside.com 2019 - 2024. All rights reserved.