Questions tagged «seo»

一般的SEO问题不在主题中。堆栈溢出仅接受与编程相关的SEO问题。非编程SEO问题应在Webmasters.SE上的https://webmasters.stackexchange.com上提出。如果有人指示您阅读此警告,请返回并删除您的问题。

3
如何在HTML5中正确使用H1
以下哪种是构造页面的正确方法: 1)h1仅在header <header> <h1>Site title</h1> <nav>...</nav> </header> <section> <h2>Page title</h2> </section> 如果我h1仅将内部header用作网站的标题,则每个页面的h1标签内容都相同。这似乎并不十分有用。 2)h1在header和中section,用于网站和页面标题 <header> <h1>Site title</h1> <nav>...</nav> </header> <section> <h1>Page title</h1> </section> 我还看到了h1在header和section标签中多次使用的示例。但是,在同一页面上具有两个标题不是错吗?此示例显示了多个标头和h1标签http://orderedlist.com/resources/html-css/structural-tags-in-html5/ 3)h1仅在中section,强调页面标题 <header> <p>Site title</p> <nav>...</nav> </header> <section> <h1>Page title</h1> </section> 最后,W3似乎建议h1在主要section元素内使用,这是否意味着我不应该在header元素内使用它? 各节可以包含任何级别的标题,但是强烈建议作者仅使用h1元素,或者对该节的嵌套级别使用适当级别的元素。


2
最佳JSON-LD做法:使用多个<script>元素?
我很好奇将JSON-LD应用于schema.org网站的最佳实践。 如果我有一个带有的页面,Article并且我也想WebSite在页面上进行定义,则需要这样: &lt;script type="application/ld+json"&gt; { "@context": "http://schema.org", "@type": "WebSite", "url": "http://www.example.com/", "potentialAction": { "@type": "SearchAction", "target": "http://www.example.com/search?&amp;q={query}", "query-input": "required" } } &lt;/script&gt; &lt;!- … --&gt; &lt;script type="application/ld+json"&gt; { "@context": "http://schema.org", "@type": "Article", "author": "John Doe", "interactionCount": [ "UserTweets:1203", "UserComments:78" ], "name": "How to Tie a Reef Knot" } &lt;/script&gt; 这是正确还是错误?是否有任何好处或需要将它们合并到相同的脚本或项目数组中?
71 html  seo  schema.org  json-ld 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.