OldPanda / Open-the-F-king-URL-Right-Now

自动跳转某些网站不希望用户直达的外链
https://greasyfork.org/zh-CN/scripts/412612-open-the-f-king-url-right-now
GNU General Public License v3.0
479 stars 36 forks source link

如果 URL 不以 / 结尾会自动加上 /, 然后就 404 了(部分网站) #104

Closed OldPanda closed 10 months ago

OldPanda commented 1 year ago

问题来源: 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 行后面

OldPanda commented 10 months ago

未在原贴中得到有效反馈,暂时关闭