ASP.NET MVC 中的 URL 映射
我正在开发一个使用 ASP.NET MVC 创建的新博客网站。我想知道将 url 映射到帖子的最佳方法是什么。目前我的实现方式是用户可以通过类别或存档通过两种方式浏览帖子:
- http://myblog .com/JavaScript/encapsulation_in_js (/PostCategory/Post)
- http://myblog.com/archive/2010/12/encapsulation_in_js (/Archive/Year/Month/Post)
这样做有什么问题吗?
I'm working on a new blog website created using ASP.NET MVC. I'm wondering what is the best way to map an url to a post. Currently I implemented in such a way an user can browse to a post by two ways through category or archive:
- http://myblog.com/JavaScript/encapsulation_in_js (/PostCategory/Post)
- http://myblog.com/archive/2010/12/encapsulation_in_js (/Archive/Year/Month/Post)
Is there any problem on doing so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这样做的问题是,一篇文章没有 1 个有限的 URL - 这将导致搜索引擎排名稀释。帖子的排名将分为 2 个不同的链接。
您可以处理此问题的方法是,您可以进行从 1 到 2 或从 2 到 1 的 301 重定向,当用户点击任一链接时,他们将被带到有限 URL
The trouble with this is that there is not 1 finite URL for a post - this will provide search engine ranking dilution. The ranking for the post will be split across 2 different links
The way you could handle this is that you could have a 301 redirect from 1 to 2 or from 2 to 1 and when a user hits either of the link then they will be taken to the finite URL