ASP.NET MVC 中的 URL 映射

发布于 2024-11-07 20:39:52 字数 457 浏览 0 评论 0原文

我正在开发一个使用 ASP.NET MVC 创建的新博客网站。我想知道将 url 映射到帖子的最佳方法是什么。目前我的实现方式是用户可以通过类别或存档通过两种方式浏览帖子:

  1. http://myblog .com/JavaScript/encapsulation_in_js (/PostCategory/Post)
  2. 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:

  1. http://myblog.com/JavaScript/encapsulation_in_js (/PostCategory/Post)
  2. http://myblog.com/archive/2010/12/encapsulation_in_js (/Archive/Year/Month/Post)

Is there any problem on doing so?

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

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

发布评论

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

评论(1

谁许谁一生繁华 2024-11-14 20:39:52

这样做的问题是,一篇文章没有 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

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