包含下划线的 url 的 301 重定向
我想
将 /directsystems/education/index/name/system_one 重定向
到
http://www.mysite.com/directsystems/education/index/name/system-one
你能给我看一下 301 吗htaccess 的重定向规则?因为我想用连字符重定向下划线
I want to
redirect /directsystems/education/index/name/system_one
TO
http://www.mysite.com/directsystems/education/index/name/system-one
Can you please show me the 301 redirect rule for htaccess? As i want to redirect undescores with hypens
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要将 URI 中的所有下划线
_
替换为连字符-
,请在 .htaccess 文件中使用以下规则:这将重定向 URL:
http://localhost/directsystems /education/index/my_name/system_one
到
http://localhost//directsystems/education/index/my-name/system-one
To replace all underscores
_
with hyphen-
in URI, use following rules in your .htaccess file:This redirects a URL of:
http://localhost/directsystems/education/index/my_name/system_one
to
http://localhost//directsystems/education/index/my-name/system-one
试试这个:
Try this: