This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed last year.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
一些让我保持排名的 URI 技巧:
http://stackoverflow.com/questions/1278157/seo-and-uri-struct
domain.com/
,domain.com/index
和domain.com/index.php
是不同的 URI.html
扩展名,或纯粹/one /two/
页面目录可能还有数百个其他提示! 链接的结构也起着非常重要的作用...
编辑:哦,我忘记了一个非常重要的页面- 正确的 404 响应!
希望这有一点帮助
A few URI tips that have kept me ranking:
http://stackoverflow.com/questions/1278157/seo-and-uri-structure
domain.com/
,domain.com/index
anddomain.com/index.php
are different URIs.html
extensions, or purely/one/two/
directories for pagesThere's probably hundreds of other tips! The structure of linking plays a very important role too...
EDIT: Oh I forgot a very important one - a proper 404 response!
Hopefully that helps a bit
一些简单的事情...
有意义且准确的元字段(特别是描述、关键字)
每个页面上都有有效的 hn 层次结构(例如 h1 h2 h3 h2 h2 h3 h3 h4 h3 h2)
文本浏览器可访问的所有(文本)内容
检查拼写
将内容和显示功能分开(例如完全使用HTML和CSS)
验证 CSS 和 (X)HTML 并使用标准 DOCTYPES
相关</code>每个页面</p>每个
合理的网站层次结构,没有孤立页面
some simple things ...
meaningful and accurate meta fields (especially description, keywords)
a valid hn hierarchy on every page (e.g. h1 h2 h3 h2 h2 h3 h3 h4 h3 h2)
all (text) content accessible to a text browser
check spellings
keep content and display functionality separated (e.g. use HTML and CSS fully)
validate CSS and (X)HTML and use standard DOCTYPES
relevant
<title>
for each pagesensible site hierarchy and no orphan pages
1) 如非必要,请勿使用 www 子域名。 如果您或您的公司犯了使用子域进行资产管理的错误,那么您可能只是为了安全而被迫使用 www。
2)搜索引擎面临的最大问题是同一页面的冗余URI。 这个问题可以通过在 HTML 中使用规范链接标签来解决。 这可能比任何其他单一 SEO 因素对您更有帮助。
3) 让您的 URI 有意义。 如果人们能够很好地记住 URI 并将其输入出来,您的 SEO 将得到显着改善。
URI 最重要的因素是易于记忆以及为搜索引擎指定唯一性的能力。 对于 URI 和 SEO 而言,其他一切都不重要。
1) Don't use www subdomain if you do not have to. If you or your company has made the mistake of using subdomains for asset management then you likely forced into using www just to be safe.
2) The biggest problem faced by search engines is redundant URIs for the same page. This problem is solved by using a canonical link tag in your HTML. This will perhaps help you more than any other single SEO factor.
3) Make your URIs meaningful. If people can remember URIs well enough to type them out your SEO will be significantly improved.
The most important factors with URIs is easy to remember and the ability to specify uniqueness to the search engine. Nothing else matters with regard to URIs and SEO.