htaccess编码,将“%2F”更改回“ /”

时间:2018-09-07 01:27:50

标签: .htaccess

我遇到一个问题,即Facebook正在发送共享的赞给我,并将斜杠“ /”编码为“%2F”,这会在我的网站上导致错误“找不到页面”。

我不能像在共享服务器上那样使用“ AllowEncodedSlashes On”。

如何将“%2F”改回“ /”?我用htaccess中的RewriteEngine尝试了许多不同的东西,但都没有用。例如,这些都不起作用:

                 time  active
0 2018-06-01 08:55:10       1
1 2018-06-01 09:00:10       1
2 2018-06-01 09:05:10       0
3 2018-06-01 09:10:10       0
4 2018-06-01 09:15:10       1
5 2018-06-01 09:20:10       1

NOR

RewriteRule ^(.*)%2F(.*)$ /$1/$2 [R,L]

NOR

RewriteRule (^|.*?/)%2F(.*)$ /$1/$2 [R,L,NC]

...

0 个答案:

没有答案