如果 URL 不以 / 结尾会自动加上 /, 然后就 404 了(部分网站)
OldPanda opened this issue · 1 comments
OldPanda commented
问题来源: https://greasyfork.org/zh-CN/scripts/412612-open-the-f-king-url-right-now/discussions/204974
临时解决方法是在 redirect 函数跳转之前加上
if (trueURL.endsWith('/')) {
trueURL = trueURL.slice(0, -1); // 多了个 slice(0, -1) 以避免未曾预料的 / 的自动添加
}
就是 258 行后面