通过 htaccess 中的 RewriteRule 到 url 的简单 url 不起作用

发布于 2024-12-11 17:01:52 字数 434 浏览 0 评论 0原文

我需要将一个 URL 重定向到另一个 URL,不带任何参数或任何内容

domain.com/snow to

superdomain.com/longer/url/snow em>

我正在尝试在 .htaccess 中使用以下内容:

RewriteRule ^snow http://superdomain.com/longer/snow [R=301,L]

RewriteRule ^snow$ http://superdomain.com/longer/snow [R=301,L]

但它们都不起作用,知道我错过了什么吗?

注意:网址只是示例,但它们的结构与我需要的相同

I need to redirect a single URL to another single URL, no parameters or anything

domain.com/snow to

superdomain.com/longer/url/snow

i am trying with, in .htaccess the following:

RewriteRule ^snow http://superdomain.com/longer/snow [R=301,L]

or

RewriteRule ^snow$ http://superdomain.com/longer/snow [R=301,L]

But none of them are working, any idea what am I missing?

Note: the url's are only examples but they have same structure than what i need

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

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

发布评论

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

评论(2

逆光下的微笑 2024-12-18 17:01:52

刚刚发现! /snow/ flolder 有自己的 .htacess :)

just found out! /snow/ flolder had its own .htacess :)

小矜持 2024-12-18 17:01:52

如果您不需要参数或任何内容,RedirectPermanent是一个更简单的选择:

RedirectPermanent /snow http://superdomain.com/longer/snow

If you don't need parameters or anything, RedirectPermanent is a simpler option:

RedirectPermanent /snow http://superdomain.com/longer/snow
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文