Django urlencode 过滤器
我在使用内置 django urlencode 过滤器编码 url 时遇到问题。当我在默认的 django 服务器上使用它时,一切都很好。但在 apache2 上它不起作用,即。我有一个名为 C# 的标签。在 localhost 上,我的 url 被编码为 ...tags/C%23/ 但在 apache2 上它是 Tags/C/
我应该做什么?
I have a problem with encoding urls using build-in django urlencode filter. When I use it on default django server everything is fine. But on apache2 it doesn`t work, ie. i have a tag called C#. On localhost my url is encoded to ...tags/C%23/ but on apache2 it is tags/C/
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜这是 apache 的错误,最简单的解决方案是url 编码两次或进行一次 base64 编码。
I guess this is a bug with apache, simplest solution would be do url encoding twice or do a base64 encoding.