htaccess 301 重定向问题

发布于 2024-11-30 16:33:25 字数 415 浏览 3 评论 0原文

我的网站有以下 URL 结构:

http://domain.com/slug/1/test-test.html
http://domain.com/slug/2/test-test.html

我想将其更改为

http://domain.com/new-1-test-test.html
http://domain.com/new-2-test-test.html

我已经尝试过

RewriteRule ^slug$ /new- [R=301,L]
RewriteRule ^/?my\slug /new [R=301,L]

但它不起作用.. 有人知道如何使用 htaccess 重定向它吗?

谢谢

I have the following URL structures for my website:

http://domain.com/slug/1/test-test.html
http://domain.com/slug/2/test-test.html

and i want to change it to

http://domain.com/new-1-test-test.html
http://domain.com/new-2-test-test.html

i have already tried

RewriteRule ^slug$ /new- [R=301,L]
RewriteRule ^/?my\slug /new [R=301,L]

but it does't work..
anyone know how to redirect this with htaccess?

Thanks

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

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

发布评论

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

评论(2

清君侧 2024-12-07 16:33:25

试试这个 - RewriteRule ^slug/([0-9]+)/(.*)$ /new-$1-$2 [R=301, L]

Try this - RewriteRule ^slug/([0-9]+)/(.*)$ /new-$1-$2 [R=301, L]

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