htaccess 301重定向规则

发布于 2024-10-18 10:20:25 字数 232 浏览 2 评论 0原文

好吧,我的网站具有这样的页面结构:

domain.com/group-1/page/,现在我需要将 htaccess 301 重定向到

domain.com/group-1/{constant}- page/

其中{constant}任何固定词(加减号)。此规则不应影响除 group-1 之外的任何其他组,

谢谢。

Well, I have website with such structure of pages:

domain.com/group-1/page/ and now I need to make htaccess 301 redirect to

domain.com/group-1/{constant}-page/

where {constant} any fixed word (plus minus sign). This rule should not effect any other groups, except group-1

Thank You.

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

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

发布评论

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

评论(1

━╋う一瞬間旳綻放 2024-10-25 10:20:25

这可以通过 mod_rewrite 来完成。将此 .htaccess 代码放入域的根目录中。

RewriteEngine On
RewriteRule ^group-1/page/(.*)$ group-1/constant-page/$1 [L,R=301]

This can be done with mod_rewrite. Put this .htaccess code into the domain's root directory.

RewriteEngine On
RewriteRule ^group-1/page/(.*)$ group-1/constant-page/$1 [L,R=301]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文