将 url 路径中包含特定单词的 URL 重定向到另一个页面

发布于 2024-10-21 16:29:49 字数 701 浏览 1 评论 0原文

我的某些网址中有一条路径,导致我不希望用户浏览到不需要的目的地:即: http://mywebsite/mysite/undesirable-path/anything-could-be-here/

当用户浏览到 url 中包含 /undesirable-path/ 的任何页面时,我会喜欢他们最终到达主页。

另一个更复杂的示例是:

  1. http://mywebsite/mysite/undesirable-path /anything-could-be-here/
  2. http://mywebsite /yoursite/undesirable-path/anything-could-be-here/

所以像 ?/undesirable-path/? - 之前的任何事情和之后的任何事情。

I have a path in some of my urls that results in an undesirable destination that I dont want users to browse to: i.e: http://mywebsite/mysite/undesirable-path/anything-could-be-here/

When users browse to any page with /undesirable-path/ in the url Id like them to just end up at the home page.

another more complex example would be:

  1. http://mywebsite/mysite/undesirable-path/anything-could-be-here/
  2. http://mywebsite/yoursite/undesirable-path/anything-could-be-here/

so something like ?/undesirable-path/? - anything before and anything after.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫瑾少女 2024-10-28 16:29:49

http://www.htaccessredirect.net/index.php

//301 Redirect Entire Directory
RedirectMatch 301 
www.mysite.com/baddir/(.*) 
www.mysite.com/$1

http://www.htaccessredirect.net/index.php

//301 Redirect Entire Directory
RedirectMatch 301 
www.mysite.com/baddir/(.*) 
www.mysite.com/$1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文