gpt4 book ai didi

JavaScript 与 URL 匹配的问题

转载 作者:行者123 更新时间:2023-12-02 19:43:40 25 4
gpt4 key购买 nike

如何在 JavaScript 中添加一些内容来检查网站上某人的网站 URL,然后在找到匹配项时重定向到网站上的特定页面?例如...

我们要检查的字符串将是 mydirectory,因此如果有人访问 example.com/mydirectory/anyfile.php 甚至 example.com/mydirectory/index.php ,然后 JavaScript 会将其页面/url 重定向到 example.com/index.php 因为它的 url 中有 mydirectory,否则如果没有找到匹配项,则不重定向,我'我使用下面的代码:

var search2 = 'mydirectory';
var redirect2 = 'http://example.com/index.php'

if (document.URL.substr(search2) !== -1)
document.location = redirect2

问题是,即使没有找到匹配项,它总是为我重定向,有人知道出了什么问题吗?有没有更快/更好的方法来做到这一点?

最佳答案

使用String.indexOf()相反:

if (window.location.pathname.indexOf('searchTerm') !== -1) {
// a match was found, redirect to your new url
window.location.href = newUrl;
}

关于JavaScript 与 URL 匹配的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10099237/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com