如何替换 url 中的转义码并使用 htaccess 重定向它?

发布于 2024-12-08 16:12:40 字数 364 浏览 1 评论 0原文

我需要从此格式重定向多个网址:

http://site.com/gallery.php%3Fpage %3D12

(末尾的 12 是页码,我有很多这样的链接,末尾有不同的数字)

http://site.com/gallery.php?page=12

如何编写规则在 htaccess 中,它将替换所有 url 中的这些字符并将它们重定向到正确的 url?

I need to redirect multiple urls from this format:

http://site.com/gallery.php%3Fpage%3D12

(the 12 at the end is the page number, i have many links like this with different numbers at the end)

to this:

http://site.com/gallery.php?page=12

how to i write a rule in htaccess that will replace those chars in all the urls and redirect them to the correct urls?

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

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

发布评论

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

评论(2

酒与心事 2024-12-15 16:12:40

默认情况下,mod_rewrte 中的 URL 会被解码(未转义),因此无需转义(编码)它们!

By default URLs in mod_rewrte are decoded(unescaped) so there is no need to escape(encode) them!

浴红衣 2024-12-15 16:12:40

正如“死亡”所提到的,不需要替换字符,这个简单的规则就达到了目的:

RewriteRule ^gallery\.php\?page\=(.*) http://site.com/gallery.php?page=$1 [R=301,L]

As mentioned by "Death", there is no need to replace the chars, this simple rule did the trick:

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