如何将 %20 或空白自动重定向到 +或者 - 使用 htaccess?
我需要自动重定向很多 url,如 /file%20name/ ore /file name/ 到 /file+name/ 或 /file-name/。
我怎样才能用 .htacess 做到这一点?
I need to redirect automatically lots of url like /file%20name/ ore /file name/ to /file+name/ or /file-name/.
How can I do this with .htacess ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 .htaccess 中尝试此规则:
R=301 将使用 https 状态 301 进行重定向
L 将制定最后一条规则
NE 表示无编码 URI
Try this rule in your .htaccess:
R=301 will redirect with https status 301
L will make last rule
NE is for no encoding URI
您可以使用这样的内容:
评论后编辑:
试试这个:
You can use something like this:
Edit after comment:
Try this: