htaccess 301重定向规则
好吧,我的网站具有这样的页面结构:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以通过
mod_rewrite
来完成。将此 .htaccess 代码放入域的根目录中。This can be done with
mod_rewrite
. Put this .htaccess code into the domain's root directory.