空格的 URL 编码

发布于 2024-11-16 09:48:19 字数 410 浏览 3 评论 0原文

是否可以将 URL 中的空格编码为“-”。

http://www.brandedproducts.com.au/Cotton%20Conference%20Bag%20%20% 20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-34-1-0-0-IPPPP1070< /a>

请帮助我。

[编辑:修复了令人困惑的“a-”]

Is it possible to encode space to a '-' in the URL.

http://www.brandedproducts.com.au/Cotton%20Conference%20Bag%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-34-1-0-0-IPPP1070

Kindly assist me.

[edit: fixed confusing 'a-']

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

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

发布评论

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

评论(2

遗心遗梦遗幸福 2024-11-23 09:48:19
str_replace('%20', '-', 'your url here');

现在我对这个问题感到困惑,哈哈。

str_replace('%20', '-', 'your url here');

Now I'm confused with the question, lol.

药祭#氼 2024-11-23 09:48:19

您可以制定重写规则,将破折号转换为空格,以便在收到请求时得到正确处理。问题在于使链接在呈现时正确无误。在执行任何类型的 URLEncode 之前,您必须手动将空格替换为破折号。

You can make a rewrite rule to translate dashes into spaces, so when the request comes in it is properly handled. The problem will be making the links correct when they are rendered. You'll have to manually replace spaces with dashes before you do any sort of URLEncode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文