防止 URL 中出现空格,如 %20
我想在地址栏中显示漂亮的 URL,并避免显示空格,如 %20
这是一个示例:
是否可以用破折号替换这些空格?
类似:/BANQUE/International-Ledger
也许在路由中要做一些事情?
谢谢。
I would like to display nice URL in address bar and avoid spaces to display like %20
Here is an example:
Is it possible to replace these spaces with a dash ?
Something like: /BANQUE/International-Ledger
Maybe something to do in the routing ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不想替换生成的路线中的空格,您不想首先生成它们。
您的“国际分类账”是什么?如果是操作,则使用 [ActionName("International-Ledger")]
如果是某种产品或产品类别,最好不要使用产品名称作为 URL,而是使用名称生成的一些“令牌”,用于例如使用正则表达式,用破折号替换空格,用基本字母变体替换特殊字母,也许还可以使用一些唯一标识符来防止同名产品发生冲突。
请参阅如何创建来自字符串的 SEO 友好的破折号分隔网址?
You dont want to replace spaces in generated route, you want to not generate them in the first place.
What is your "International Ledger" ? If it is action, then use [ActionName("International-Ledger")]
If it is some kind of product or category of product, is it good practice dont use product name for URL, but some "token" generated from name, for example with regex, replacing spaces with dashes, special letters with theirs basic alphabet variants, and maybe some unique identifier to prevent conflicts of products with the same name.
see How can I create a SEO friendly dash-delimited url from a string?