我的路线定义为:
{theme}/{subtheme}/{urltitle}
用于列出文章详细信息,我想让其他人(不是开发人员)为特定文章创建永久链接,例如http://www.whateverdomain/article-about-cars/
:
如果本文有永久链接,如何处理将{theme}/{subtheme}/{urltitle}
重写为永久链接的请求?
答案 0 :(得分:7)
要实现这一目标,您需要做三件事:
首先,让我们从我们的文章需要的信息开始:
Article
-------
Id <---------
Title \
Slug |
Theme |
SubTheme |
|
|
Permalink Table |
--------------- |
PermalinkId |
Name |
Slug /
ArticleId ---------
//normal route for article
routes.MapRoute("article",
"{theme}/{subtheme}/{slug}",
new {controller = "article", action = "show" }
);
//Permalink route for article
//You may want to create a custom route constraint for this, or place at bottom of routes
routes.MapRoute("permalinkArticleRoute",
"{PermaLinkName}",
new {controller = "article", action = "showbypermalink"}
);
public class ArticleController : Controller
{
public ArticleRepository ArticleRepository {get; set;} //DI'd or constructor injected
public ActionResult Show(Article article)
{
var article = ArticleRepository.GetBy(article.theme, article.subtheme, article.slug);
ArticleViewModel avm = new ArticleViewModel(article);
return View(avm);
}
public ActionResult ShowByPermalink(string PermalinkName)
{
var article = ArticleRepository.GetBy(PermalinkName);
ArticleViewModel avm = new ArticleViewModel(article);
return View(avm);
}
}
public class ArticleRepository
{
//Uses Linq-to-SQL. Can be adapted for any other ORM. The retrieval logic is the same
//It's the actual code that differs
public Article GetBy(string theme, string subtheme, string slug)
{
return (from a in db.Articles where
(a.Theme == theme && a.Subtheme == subtheme && a.Slug == slug)
select a).FirstOrDefault();
}
public Article GetBy(string permalinkName)
{
return (from a in db.Articles
join p in Permalink on permaLink.ArticleId equals a.Id
where p.permalinkName == permalinkName
select a;
}
}
最后一部分是创建/读取功能,供用户创建永久链接。请注意,从SEO角度来看这是“不好的”(当多个链接解析到同一页面时会出现稀释),但您可能想要这样做(无论出于何种原因)。
对于每种方法,请确保将301重定向(RedirectToAction
发出此问题)发布到正确的“当前”网址。如果你不这样做,你将受到搜索神的惩罚。
更新固定链接操作,将您重定向到Show
操作:
public ActionResult ShowByPermalink(string PermalinkName)
{
var article = ArticleRepository.GetBy(PermalinkName);
return RedirectToAction("Show", article);
}
现在创建永久链接。这涉及将CR
(CRUD
)添加到Permalink存储库,就像我们之前在文章中所做的那样。
以下是一些警告:
{permalinkId}/{permalinkName}
,则必须具有逻辑以确保所有永久链接都是唯一的。 IRouteConstraint
)将是一种在请求时检查用户是否获得有效权限的方法。但是,这是更多的工作,并导致更多的数据库命中(除非你有一个很好的缓存机制,但这会导致其他潜在的问题){something}
行为的其他路由,则您的永久链接路径应位于路径的底部,如:http://example.com/something
。否则,当您不希望发生这种情况时,其他路线将会触及永久链接路线。如果您有良好的路线约束,请不要担心这一点。