包含下划线的 url 的 301 重定向

发布于 2024-11-03 18:20:28 字数 221 浏览 0 评论 0原文

我想

将 /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 技术交流群。

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

发布评论

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

评论(2

凉城凉梦凉人心 2024-11-10 18:20:28

要将 URI 中的所有下划线 _ 替换为连字符 -,请在 .htaccess 文件中使用以下规则:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteRule ^([^\_]+)_([^\_]+)(_.*)$ /$1-$2$3 [N,DPI]
RewriteRule ^([^\_]+)_(.*)$ /$1-$2 [L,R=301,DPI]

这将重定向 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:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteRule ^([^\_]+)_([^\_]+)(_.*)$ /$1-$2$3 [N,DPI]
RewriteRule ^([^\_]+)_(.*)$ /$1-$2 [L,R=301,DPI]

This redirects a URL of:

http://localhost/directsystems/education/index/my_name/system_one

to

http://localhost//directsystems/education/index/my-name/system-one

装纯掩盖桑 2024-11-10 18:20:28

试试这个:

RewriteRule ^([^_]*)_([^_]*)$ $1-$2

Try this:

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