如何替换 url 中的转义码并使用 htaccess 重定向它?
我需要从此格式重定向多个网址:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,mod_rewrte 中的 URL 会被解码(未转义),因此无需转义(编码)它们!
By default URLs in mod_rewrte are decoded(unescaped) so there is no need to escape(encode) them!
正如“死亡”所提到的,不需要替换字符,这个简单的规则就达到了目的:
As mentioned by "Death", there is no need to replace the chars, this simple rule did the trick: