搜索引擎结果中的页面排名
我有一个问题需要回答...
我已经建立了一个网站,现在我需要让它出现在 Google、雅虎和其他网站的搜索结果的第一页上,具体取决于我拥有的一些关键字。 ..
我想知道如何实现这一目标。我需要更改代码吗? .htaccess?
谢谢大家。
I have a question that I need to have answer for ...
I have built a website, now I need to have it appear on Google, yahoo and other websites on the first page of the search result depending on some keywords that I have ...
I would like to know how I can achieve this. Is there somethings that I need to alter the code? .htaccess?
Thanks all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用谷歌页面排名算法,例如:http://phpir.com/pagerank-in-php 。它基本上是一个马尔可夫链,一个矩阵的遍历,给出从任何其他状态移动到任何状态的概率,任何给定页面的目的地的总概率加起来为 1。当你只有 2 个概率时,就像有起始边缘或第一个概率的反转掩码。它将是 n*n/2-1 条边。
You can use a google page rank algorithm for example here: http://phpir.com/pagerank-in-php. It's basically a marcov chain, a traversal of a matrix that gives the probability of moving to any state from any other state, with the total probabilities for the destinations from any given page adding up to 1. When you have only 2 probabilities is like having an inverted mask of the starting edge or the first probability. It would be n*n/2-1 of edges.