Baidu search rankings often change according to the size of the traffic that the page search enters. If many people will enter the same page for a keyword, Baidu will think that this page can solve this problem well, so that this page will be searched for in this keyword. It is in front of other pages.In the backstage of Baidu webmaster platform, we can know what keywords are searched by Baidu and whether they have entered our webpage.We can do this by making a page that contains all the URLs for those keywords. After visiting, we can access our website to improve our website ranking.
Traffic Keywords Link Pages Boost Baidu Weights
The following code is a traffic keyword link page I wrote, which is all my Baidu keywords.We occasionally click to improve the corresponding keyword rankings.The usage method is to export Baidu traffic keywords in a keyword.txt file with one keyword per line. The file path is the same as the following PHP code file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
<html> <body> <title>Baidu Keyword|Wang Baiyuan's Blog</title> <meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1"> <style> .link{ Float:left; Margin-left:12px; Padding:2px; } a:visited { Color:#00FF00; Text-decoration:none; } </style> <?php /** * Created by PhpStorm. * project: wordpress-blog * User: BrainWang * Author_URL: http://wangbaiyuan.cn * Date: 2015/12/20 * Time: 14:03 */ $file = fopen("keyword.txt", "r") or exit("Unable to open file!"); $url="https://www.baidu.com/s?ie=UTF-8&wd="; //Output a line of the file until the end is reached While(!feof($file)) { $key=fgets($file); $EncodeStr=urlencode($key); Echo '<li class="link"><a href="'.$url.$EncodeStr.'" target="_blank" >'.$key.'</a><br /></li>' ; } Fclose($file); ?> </body> </html> |
This article has been printed on copyright and is protected by copyright laws. It must not be reproduced without permission.If you need to reprint, please contact the author or visit the copyright to obtain the authorization. If you feel that this article is useful to you, you can click the "Sponsoring Author" below to call the author!
Reprinted Note Source: Baiyuan's Blog>>https://wangbaiyuan.cn/en/keyword-links-page-baidu-weight-ascension-2.html
No Comment