如何在asp.net mvc中做长静态url
在 ASP.NET MVC 中创建长静态 url 的最佳方法是什么?例如,假设我想创建以下网址。
例如:
/Packages/Somepackage/package a
what would be the best way to create long static urls in asp.net MVC? For example say I wanted to create the following url.
Ex:
/Packages/Somepackage/package a
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您这样做是为了搜索引擎优化,可能有更好的方法。
检查这个问题的 URL,您会看到有一个名为
questions
的控制器、一个可以从数据库中查找该问题的id
以及一个长静态用于 SEO 的 URL 部分:URL 的长静态部分只是控制器方法中的一个参数,作为文本字段存储在数据库中。您可以在该字段中放置任何您想要的内容,只要用破折号分隔单词即可(无论如何,搜索引擎似乎更喜欢这种方式)。它也是一个可选的,因此像
...这样的链接也可以工作。
If you are doing this for search engine optimization, there might be a better way.
Examining the URL for this question, you will see that there is a controller called
questions
, anid
so that the question can be looked up from the database, and a long static part of the URL for SEO:The long static part of the URL is just a parameter in the controller method, stored as a text field in the database. You can put anything in that field that you want, as long as you separate the words with dashes (which is what the search engines seem to prefer anyway). It is an optional one too, so that links like
...also work.
创建一些标准路由定义,如下所示:
然后创建一个名为 Packages 的控制器以及其中的一些操作,如下所示:
定义操作如下:
Create some standard routes definitions, like these:
Then create a controller names Packages and some actions in it like this:
Define the action like this: