我的MVC3网站没有出现在谷歌搜索中。作为SEO优化的一部分,我想将元标记放在_layout.cshtml中。将元标记仅放在母版页或内容页中也不错吗?什么是更好的SEO技术?元标记是静态的。提前谢谢。
答案 0 :(得分:2)
示例:
_layout.chtml
<head>
<title>@Html.Raw(ViewBag.Title)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
... other common tags
@RenderSection("Meta", required: false) // your section
...
</head>
在自定义页面中,您应该使用
@model SomeModel
@section Meta
{
<meta name="description" content="your custom tag" />
// other custom tags
}
// some html or other code
答案 1 :(得分:0)
由于元标记放在head
上,因此它们应仅放置在布局上。您可能还想查看文章"SEO is more than meta-tags and good content"