做SO风格路线的最佳方法是什么(破折号作为空格)
Just wondering what the best way to do SO style routes is.
What is the best way to do SO style routes (dashes as spaces)
What's the best way to create routes like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现 ASP.NET MVC 和干净的 SEO 友好 URL。
I've found ASP.NET MVC and Clean SEO Friendly URLs on Dominic Pettifer's blog.
这是一种方法< /a>.
这是另一个。
顺便说一句,它被称为slug。
Here's one way.
Here's another.
It's called a slug btw.
我认为最好的方法是用破折号替换任何非字母数字字符。您可以搜索此正则表达式
[^\w]+
并替换为-
。I think the best way would be to replace any non-alphanumeric character with a dash. You could search for this regex
[^\w]+
and replace with-
.