<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>China SEO Tips, Facts and Everything Else &#8211; Chinese SEO Shifu</title>
	<atom:link href="https://chineseseoshifu.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://chineseseoshifu.com</link>
	<description>China SEO and Online Marketing</description>
	<lastBuildDate>Wed, 20 Jul 2016 14:53:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.5.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Submit URLs to Baidu in Style</title>
		<link>https://chineseseoshifu.com/blog/submit-urls-to-baidu-in-style.html</link>
		<pubDate>Sat, 17 Oct 2015 15:28:55 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Baidu SEO Guide]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2812</guid>
		<description><![CDATA[When submitting URLs to search engines, the two most common ways are single URL submission and sitemap submission. For example, on Baidu: 1. You can do a quick manual submission here: http://zhanzhang.baidu.com/linksubmit/url 2. You can submit your sitemap in Baidu Webmaster Tools. However, please note Baidu sitemap submission requires a Baidu Webmaster Tools account with [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>When submitting URLs to search engines, the two most common ways are single URL submission and sitemap submission.</p>
<p><img class="aligncenter" src="https://chineseseoshifu.com/wp-content/uploads/2015/submission-in-style.jpg" width="695" height="250" /></p>
<p>For example, on Baidu:</p>
<p>1. You can do a quick manual submission here: <a href="http://zhanzhang.baidu.com/linksubmit/url">http://zhanzhang.baidu.com/linksubmit/url</a></p>
<p>2. You can submit your sitemap in Baidu Webmaster Tools. However, please note Baidu sitemap submission requires a Baidu Webmaster Tools account with the privilege of sitemap submission, which is not available to the public yet.</p>
<p>But this summer, Baidu introduced a fancier yet kind of geeky way of URL submission &#8211; bulk submission via the direct submission API.<span id="more-2812"></span></p>
<p>By utilizing Baidu&#8217;s direct submission API, webmasters don&#8217;t have to sit there waiting for Baidu to come to your site and find new URLs on your site any more &#8211; now you can directly push new URLs to Baidu, which can potentially make the indexation process much quicker.</p>
<p>Isn&#8217;t that cool? Okay, we have created a simple guide to help you get started quickly.</p>
<h3><strong>Overview</strong></h3>
<p>First, you need a Baidu Webmaster Tools account. Baidu assigns each webmaster tools account a unique token, which is part of the request URL for URL submission.</p>
<p>You can find you own access token by going to “链接提交” in your BWT account.</p>
<p><img class="aligncenter" src="https://chineseseoshifu.com/wp-content/uploads/2015/baidu-url-submission.png" alt="" width="695" height="250" /></p>
<p>For example, if your website is <a href="http://www.a.com">www.a.com</a>, your access URL will be something like:</p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;">http://data.zz.baidu.com/urls?site=www.a.com&amp;token=your-private-token
</pre>
</div>
<p>&nbsp;</p>
<table>
<tbody>
<tr>
<th>Parameters</th>
<th>Required</th>
<th>Type</th>
<th>Notes</th>
</tr>
<tr>
<td>site</td>
<td>yes</td>
<td>string</td>
<td>a verified website in Baidu Webmaster Tools</td>
</tr>
<tr>
<td>token</td>
<td>yes</td>
<td>string</td>
<td>Your own private token</td>
</tr>
</tbody>
</table>
<h3><strong>How to Use the API &#8211; Sample Codes</strong></h3>
<p><strong>1. Curl Example</strong><br />
Put the URLs in a file named urls.txt. One URL per line.</p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;">curl -H <span style="background-color: #fff0f0;">'Content-Type:text/plain'</span> --data-binary @urls.txt <span style="background-color: #fff0f0;">"http://data.zz.baidu.com/urls?site=www.a.com&amp;token=your-private-token"</span>
</pre>
</div>
<p><strong>2. HTTP Post Method Example</strong></p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #0066bb; font-weight: bold;">POST</span> <span style="color: #0e84b5; font-weight: bold;">/urls?site=www.a.com&amp;token=your-private-token</span> <span style="color: #008800; font-weight: bold;">HTTP</span><span style="color: #333333;">/</span><span style="color: #6600ee; font-weight: bold;">1.1</span>
<span style="color: #0000cc;">User-Agent</span><span style="color: #333333;">:</span> curl/7.12.1 
<span style="color: #0000cc;">Host</span><span style="color: #333333;">:</span> data.zz.baidu.com 
<span style="color: #0000cc;">Content-Type</span><span style="color: #333333;">:</span> text/plain 
<span style="color: #0000cc;">Content-Length</span><span style="color: #333333;">:</span> 83 
<span style="color: #0000cc;">http</span><span style="color: #333333;">:</span>//www.a.com/1.html
<span style="color: #0000cc;">http</span><span style="color: #333333;">:</span>//www.a.com/2.html
</pre>
</div>
<p><strong>3. PHP Example</strong></p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;">$urls = array(
    'http://www.a.com/1.html',
    'http://www.a.com/2.html',
);
$api = 'http://data.zz.baidu.com/urls?site=www.a.com&amp;token=your-private-token';
$ch = curl_init();
$options =  array(
    CURLOPT_URL =&gt; $api,
    CURLOPT_POST =&gt; true,
    CURLOPT_RETURNTRANSFER =&gt; true,
    CURLOPT_POSTFIELDS =&gt;implode("\n", $urls),
    CURLOPT_HTTPHEADER =&gt; array('Content-Type: text/plain'),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
echo $result;
</pre>
</div>
<p><strong>4. Ruby Example</strong></p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #007020;">require</span> <span style="background-color: #fff0f0;">'net/http'</span>
urls <span style="color: #333333;">=</span> <span style="color: #333333;">[</span><span style="background-color: #fff0f0;">'http://www.a.com/1.html'</span>, <span style="background-color: #fff0f0;">'http://www.a.com/2.html'</span><span style="color: #333333;">]</span>
uri <span style="color: #333333;">=</span> <span style="color: #003366; font-weight: bold;">URI</span><span style="color: #333333;">.</span>parse(<span style="background-color: #fff0f0;">'http://data.zz.baidu.com/urls?site=www.a.com&amp;token=your-private-token'</span>)
req <span style="color: #333333;">=</span> <span style="color: #aa6600;">Net</span>:<span style="color: #aa6600;">:HTTP</span><span style="color: #333333;">::</span><span style="color: #003366; font-weight: bold;">Post</span><span style="color: #333333;">.</span>new(uri<span style="color: #333333;">.</span>request_uri)
req<span style="color: #333333;">.</span>body <span style="color: #333333;">=</span> urls<span style="color: #333333;">.</span>join(<span style="background-color: #fff0f0;">"</span><span style="color: #666666; font-weight: bold; background-color: #fff0f0;">\n</span><span style="background-color: #fff0f0;">"</span>)
req<span style="color: #333333;">.</span>content_type <span style="color: #333333;">=</span> <span style="background-color: #fff0f0;">'text/plain'</span>
res <span style="color: #333333;">=</span> <span style="color: #aa6600;">Net</span>:<span style="color: #aa6600;">:HTTP</span><span style="color: #333333;">.</span>start(uri<span style="color: #333333;">.</span>hostname, uri<span style="color: #333333;">.</span>port) { <span style="color: #333333;">|</span>http<span style="color: #333333;">|</span> http<span style="color: #333333;">.</span>request(req) }
<span style="color: #007020;">puts</span> res<span style="color: #333333;">.</span>body
</pre>
</div>
<p><strong>5. Python Example</strong></p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #008800; font-weight: bold;">import</span> <span style="color: #0e84b5; font-weight: bold;">requests</span>

seed_file <span style="color: #333333;">=</span> <span style="color: #007020;">open</span>(<span style="background-color: #fff0f0;">'urls.txt'</span>, <span style="background-color: #fff0f0;">'r'</span>)
urllist <span style="color: #333333;">=</span> <span style="background-color: #fff0f0;">'</span><span style="color: #666666; font-weight: bold; background-color: #fff0f0;">\n</span><span style="background-color: #fff0f0;">'</span><span style="color: #333333;">.</span>join(seed_file<span style="color: #333333;">.</span>readlines())

r <span style="color: #333333;">=</span> requests<span style="color: #333333;">.</span>post(
<span style="background-color: #fff0f0;">"http://data.zz.baidu.com/urls?site=www.a.com&amp;token=your-private-token"</span>,
data<span style="color: #333333;">=</span>urllist,
headers<span style="color: #333333;">=</span>{<span style="background-color: #fff0f0;">'content-type'</span>:<span style="background-color: #fff0f0;">'text/plain'</span>})

<span style="color: #008800; font-weight: bold;">print</span> r<span style="color: #333333;">.</span>text
</pre>
</div>
<h3><strong>Responses</strong></h3>
<p><strong>1. Successful submission</strong></p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;">{
    "remain":4999998,
    "success":2,
    "not_same_site":[],
    "not_valid":[]
}
</pre>
</div>
<p>&nbsp;</p>
<table>
<tbody>
<tr>
<th>String</th>
<th>Required</th>
<th>Type</th>
<th>Notes</th>
</tr>
<tr>
<td>success</td>
<td>yes</td>
<td>int</td>
<td>no. of URLs that are successfully submitted</td>
</tr>
<tr>
<td>remain</td>
<td>yes</td>
<td>int</td>
<td>no. of URLs left in the daily quota</td>
</tr>
<tr>
<td>not_same_site</td>
<td>no</td>
<td>array</td>
<td>not a verified site in your BWT account</td>
</tr>
<tr>
<td>not_valid</td>
<td>no</td>
<td>array</td>
<td>invalid URLs submitted</td>
</tr>
</tbody>
</table>
<p><strong>2. Failed submission</strong></p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;">{
    "error":401,
    "message":"token is not valid"
}
</pre>
</div>
<p>&nbsp;</p>
<table>
<tbody>
<tr>
<th>String</th>
<th>Required</th>
<th>Type</th>
<th>Notes</th>
</tr>
<tr>
<td>error</td>
<td>yes</td>
<td>int</td>
<td>error code, usually a 4xx HTTP status code</td>
</tr>
<tr>
<td>message</td>
<td>yes</td>
<td>string</td>
<td>error description</td>
</tr>
</tbody>
</table>
<h3><strong>Using WordPress or Discuz?</strong></h3>
<p>To simplify the URL submission process, Baidu has released official plugins for <a title="Baidu WordPress plugin" href="https://chineseseoshifu.com/blog/baidu-structured-data-wordpress-plugin.html">WordPress</a> and Discuz. The plugins not only submit the site’s URLs to Baidu, but also make the submitted data in a Baidu-friendly way.</p>
<p>You can grab the plugins here: <a href="http://zhanzhang.baidu.com/dataplug/">http://zhanzhang.baidu.com/dataplug/</a></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/baidu-share-social-bookmarking-sharing-service-from-baidu.html" rel="bookmark" title="Baidu Share &#8211; social sharing service from Baidu">Baidu Share &#8211; social sharing service from Baidu </a></li>
<li><a href="https://chineseseoshifu.com/blog/baidu-bookmarks-indexation.html" rel="bookmark" title="Use Baidu Bookmarks to Speed up Indexation">Use Baidu Bookmarks to Speed up Indexation </a></li>
<li><a href="https://chineseseoshifu.com/blog/complete-list-of-baidu-search-url-parameters.html" rel="bookmark" title="The Complete List of Baidu Search URL Parameters">The Complete List of Baidu Search URL Parameters </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>Dominate Navigational Searches on Baidu</title>
		<link>https://chineseseoshifu.com/blog/dominate-navigational-searches-on-baidu.html</link>
		<pubDate>Sun, 11 Oct 2015 15:55:05 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Baidu SEO Guide]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2785</guid>
		<description><![CDATA[I personally believe improved search results for navigational queries is one of Google&#8217;s most valuable achievements over the past few years. Now it&#8217;s a lot easier for businesses to have good visibility for branded searches on Google. This not only brings people better search accuracy, but also makes the web much safer and reduces the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I personally believe improved search results for navigational queries is one of Google&#8217;s most valuable achievements over the past few years. Now it&#8217;s a lot easier for businesses to have good visibility for branded searches on Google.</p>
<p><img class="aligncenter" src="https://chineseseoshifu.com/wp-content/uploads/2015/brand-search-baidu.jpg" alt="" width="695" height="250" /></p>
<p>This not only brings people better search accuracy, but also makes the web much safer and reduces the risk of online fraud, such as phishing scams.</p>
<p>But for Baidu, that is not the case.<span id="more-2785"></span></p>
<p>Sometimes it can still be a challenge to have good rankings for branded keywords on Baidu, especially when your brand name is very popular, when other people also target your branded keywords, or very unpopular, when there is not enough searches for the brand name so Baidu doesn’t have much user data for it.</p>
<p>Below are some common cases:</p>
<ol>
<li>When your brand name is another more trusted websites’s product name. For example, your run a hotel, and your hotel’s brand name is also listed on a large hotel booking website such as eLong and Ctrip.</li>
<li>When another website targets your brand name, with better user experience for Baidu searchers.</li>
<li>Yellow pages that set up an “official” website/landing page without your authorization.</li>
</ol>
<p>Organic traffic generated by branded keywords usually comes from other marketing channels and is of better traffic health &#8211; at least it means the searchers are already interested in your company, right? So failing to acquire this traffic can result in significant losses to your brand.</p>
<p>In this post I will share some common approaches we take to secure navigational searches on Baidu.</p>
<p><strong>1. Join Baidu Trust (Baidu Official Site Program)</strong></p>
<p><a href="http://trust.baidu.com/vstar/official/index/" target="_blank">Baidu Trust </a>is one of Baidu’s efforts to improve search accuracy for navigational searches. It works in quite a dummy way: you submit your business information such as the tax id and the business license to Baidu, proving you are the real owner of the website.</p>
<p><img class="aligncenter" src="https://chineseseoshifu.com/wp-content/uploads/2015/baidu-trust.png" alt="" width="695" height="250" /></p>
<p>Baidu charges 600 yuan per year for Baidu Trust and it is still limited to businesses registered in China, with valid business licenses.</p>
<p><strong>2. Put the brand name at important places on the website</strong></p>
<p>Putting keywords at important places on a website is a common SEO practice and can give the website a better chance of good rankings.</p>
<p>The same, of course, also applies to branded keywords.</p>
<p>Places such as page titles, the logo alt tag, the footer, the homeage, the about us page, and the contact us page all sound like ideal containers for branded keywords.</p>
<p><strong>3. Include the ICP license no. in footer</strong></p>
<p>This has never been disclosed publicly by Baidu, but we have confirmed with a former Baidu engineer privately that having the ICP license number on the website improves the domain&#8217;s trust with Baidu and is a positive ranking factor.</p>
<p><img class="aligncenter" src="https://chineseseoshifu.com/wp-content/uploads/2015/icp-number-on-footer.png" alt="" width="695" height="96" /></p>
<p>However, how much weight this signal carries is still a mystery. I think it should be a weak signal, but why not if you have one?</p>
<p><strong>4. Use the brand name as the anchor text when building links</strong></p>
<p>When developing backlinks for a website, it’s important to diversify the anchor text and use your brand name and the variants as the anchor text for some of the backlinks.</p>
<p>This not only helps maintain a healthy link profile and reduce the risk of over optimization, but also improves the site’s rankings for the branded keywords.</p>
<p>Although there is not a universal anchor text distribution guide, it’s a good idea to analyze that of the high ranking websites from your industry, using backlink analysis tools such as <a href="https://moz.com/researchtools/ose/" target="_blank">Open Site Explorer</a>.</p>
<p><strong>Finally, I hope you will never have to find this post useful <img src="https://s.w.org/images/core/emoji/72x72/1f642.png" alt="&#x1f642;" class="wp-smiley" style="height: 1em; max-height: 1em;" /></strong></p>
<p>Not having the deserved rankings for your own branded keywords can’t be regarded as lucky from the perspective of SEO. You will find this post useful when you are from the unlucky side, but let’s just hope that never happens.</p>
<p>What’s your story about Baidu navigational searches? Is it a still headache for you to rank for branded keywords on Baidu? Your comments are always welcomed.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/baidu-and-nofollow.html" rel="bookmark" title="Baidu and nofollow">Baidu and nofollow </a></li>
<li><a href="https://chineseseoshifu.com/blog/the-inputt-variable-of-the-url-of-baidus-serp.html" rel="bookmark" title="The &#8220;inputT&#8221; variable of the URL of Baidu&#8217;s SERP">The &#8220;inputT&#8221; variable of the URL of Baidu&#8217;s SERP </a></li>
<li><a href="https://chineseseoshifu.com/blog/baidu-page-rank-checker.html" rel="bookmark" title="Baidu &#8220;Page Rank&#8221; Checker">Baidu &#8220;Page Rank&#8221; Checker </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>How to Optimize HTTPS Sites for Baidu</title>
		<link>https://chineseseoshifu.com/blog/optimize-https-sites-for-baidu.html</link>
		<pubDate>Thu, 07 May 2015 16:57:08 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Baidu SEO Guide]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2566</guid>
		<description><![CDATA[Update May 2015: Starting from June 2015, Baidu has started to index HTTPS sites too. According to the announcement, Baidu will also give more trust to HTTPS sites and use HTTPS as a ranking signal. &#8212;&#8212;&#8212;&#8212; In August Google announced HTTPS as a new ranking signal, and since then I have seen a lot of [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><span style="color: #ff0000;"><strong>Update May 2015</strong></span>: Starting from June 2015, Baidu has started to index HTTPS sites too. According to <a href="http://zhanzhang.baidu.com/wiki/392" target="_blank">the announcement</a>, Baidu will also give more trust to HTTPS sites and use HTTPS as a ranking signal.</p>
<p>&#8212;&#8212;&#8212;&#8212;</p>
<p>In August Google announced HTTPS as a new ranking signal, and since then I have seen a lot of websites, not only websites that collect sensitive user information such as online stores, but also sites that don’t, including blogs and enterprise websites, have adopted HTTPS.</p>
<p><img class="alignnone" src="https://chineseseoshifu.com/wp-content/uploads/2014-09/baidu-and-https.jpg" alt="Baidu and HTTPS" width="695" height="250" /></p>
<p>However, if China is one of your target market and Baidu is where a large portion of your organic traffic comes from, you may want to have a second thought.</p>
<p><span id="more-2566"></span></p>
<h2>How Does Baidu Handle Sites with HTTPS?</h2>
<p><strong>In general, Baidu doesn’t crawl HTTPS sites.</strong></p>
<p>This may be bad news but unless you are a big website, by which I mean influential, popular and/or having a lot of pages and traffic, Baidu’s HTTPS crawl budget allocated to you is nothing better than zero.</p>
<p>So if you really need to enable HTTPS on your site, please read on.</p>
<h2>How to Optimize HTTPS Sites for Baidu</h2>
<p>Since Baidu doesn’t crawl HTTPS sites, “optimizing” here means serving different content to Baiduspider and human visitors.</p>
<p>Below is the way officially recommended by Baidu:</p>
<p><strong>Step 1</strong> &#8211; create a http version of your HTTPS site. Be sure to let them have duplicate content, to avoid the risk of cloaking;</p>
<p><strong>Step 2</strong> &#8211; configure your server to let it serve the HTTP version to Baiduspider, but HTTPS to human visitors.</p>
<p><strong>Step 3</strong> &#8211; when people come to your site from Baidu’s SERPs, be sure to 301 redirect them from the HTTP version back to HTTPS.</p>
<p>For example, you need to add the following lines to the .htaccess file on your server:</p>
<p><!-- HTML generated using hilite.me --></p>
<div style="background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #007020;">Options</span> +FollowSymlinks
<span style="color: #007020;">RewriteEngine</span> <span style="color: #008800; font-weight: bold;">on</span>
<span style="color: #007020;">RewriteBase</span> /
<span style="color: #007020;">RewriteCond</span> %{HTTP_USER_AGENT} Baiduspider
<span style="color: #007020;">RewriteCond</span> %{HTTPS} <span style="color: #008800; font-weight: bold;">on</span>
<span style="color: #007020;">RewriteRule</span> ^(.*)$ http://www.domain.com/$1 [R=301,L]
<span style="color: #007020;">RewriteCond</span> %{HTTP_USER_AGENT} !Baiduspider
<span style="color: #007020;">RewriteCond</span> %{HTTPS} <span style="color: #008800; font-weight: bold;">off</span>
<span style="color: #007020;">RewriteRule</span> ^(.*)$ https://www.domain.com/$1 [R=301,L]
</pre>
</div>
<p>&nbsp;</p>
<p>That’s pretty much what you need to do when you want to enable HTTPS across your site without losing organic traffic from Baidu. Of course don’t forget to pay attention to your server logs so you know dummy Baiduspider crawls your site right.</p>
<p>Having more questions about optimizing HTTPS sites for Baidu? Why not leave a comment or <a href="https://chineseseoshifu.com/contact-chinese-seo-shifu/">give us a poke here</a>?</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/top-5-chinese-question-and-answer-sites.html" rel="bookmark" title="Top 5 Chinese Q&#038;A Sites">Top 5 Chinese Q&#038;A Sites </a></li>
<li><a href="https://chineseseoshifu.com/blog/online-marketing-strategy-of-top-chinese-ecommerce-sites.html" rel="bookmark" title="Compare the SERPs of Top 4 eCommerce Sites on Baidu">Compare the SERPs of Top 4 eCommerce Sites on Baidu </a></li>
<li><a href="https://chineseseoshifu.com/blog/top-9-chinese-video-sites.html" rel="bookmark" title="Top 9 Chinese Video Sites">Top 9 Chinese Video Sites </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>Force Baidu Not to Convert Your Site for Mobile</title>
		<link>https://chineseseoshifu.com/blog/force-baidu-not-to-convert-your-site-for-mobile.html</link>
		<pubDate>Mon, 19 Jan 2015 08:06:17 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Baidu SEO Guide]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2614</guid>
		<description><![CDATA[On mobile devices, Baidu automatically converts websites to suit the screen resolutions and wishfully bring better user experience to its users. This can be quite annoying when you already have a mobile or responsive website. Luckily, there are three simple ways to stop the madness: Option 1: Cache-Control: no-transform This directive can be either used [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>On mobile devices, Baidu automatically converts websites to suit the screen resolutions and wishfully bring better user experience to its users.</p>
<p>This can be quite annoying when you already have a mobile or responsive website.</p>
<p><img class="aligncenter" src="https://chineseseoshifu.com/wp-content/uploads/2015/force-baidu-not-to-convert.jpg" alt="Before and after being transcoded by Baidu" width="600" height="486" /><span id="more-2614"></span></p>
<p>Luckily, there are three simple ways to stop the madness:</p>
<h2>Option 1: Cache-Control: no-transform</h2>
<p>This directive can be either used as an HTTP response header or a meta tag as below:</p>
<div style="background: #f8f8f8; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #008000; font-weight: bold;">&lt;meta</span> <span style="color: #7d9029;">http-equiv=</span><span style="color: #ba2121;">"Cache-Control"</span> <span style="color: #7d9029;">content=</span><span style="color: #ba2121;">"no-transform "</span> <span style="color: #008000; font-weight: bold;">/&gt;</span>
</pre>
</div>
<h2>Option 2: media=“handheld”</h2>
<p>For those who already have mobile sites, they can specify the addresses of their mobile sites, by adding the following line within the head section of the page:</p>
<div style="background: #f8f8f8; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #008000; font-weight: bold;">&lt;link</span> <span style="color: #7d9029;">rel=</span><span style="color: #ba2121;">"alternate"</span> <span style="color: #7d9029;">type=</span><span style="color: #ba2121;">"application/vnd.wap.xhtml+xml"</span> <span style="color: #7d9029;">media=</span><span style="color: #ba2121;">"handheld"</span> <span style="color: #7d9029;">href=</span><span style="color: #ba2121;">"your-mobile-site-address"</span><span style="color: #008000; font-weight: bold;">/&gt;</span> 
</pre>
</div>
<p>Just replace <em>your-mobile-site-address</em> with the real address of your mobile site.</p>
<h2>Option 3: User-Agent Specific Settings</h2>
<p>The user-agent of Baidu’s transcoder is <strong>Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; baidu Transcoder;) </strong>, so you can let your server return the mobile site specifically to this user-agent.</p>
<p>Be sure to add Content-Type: vnd.wap.xhtml+xml in the response.</p>
<p>So the three methods above can save your site from being blindly converted by Baidu. If you have other problems with Baidu-dummy-spider, why not leave a comment below or drop us a line?</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/mobile-seo-for-baidu.html" rel="bookmark" title="Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices">Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices </a></li>
<li><a href="https://chineseseoshifu.com/blog/do-your-visitors-get-lost-on-your-site.html" rel="bookmark" title="Do Your Visitors Get Lost On Your Site?">Do Your Visitors Get Lost On Your Site? </a></li>
<li><a href="https://chineseseoshifu.com/blog/seo-baiduspider-googlebot.html" rel="bookmark" title="Baiduspider, Googlebot and How Differently They Behave on Your Site">Baiduspider, Googlebot and How Differently They Behave on Your Site </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>What Is Baidu Zhida</title>
		<link>https://chineseseoshifu.com/blog/what-is-baidu-zhida.html</link>
		<pubDate>Mon, 08 Sep 2014 13:06:45 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Baidu SEO Guide]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2552</guid>
		<description><![CDATA[At Baidu World Conference 2014 held in Beijing on September 3rd, Baidu introduced a new service named Baidu Zhida. I assume Pinyin may kill a large portion of our readers, so first let me make sure you don’t confuse Baidu Zhida (Baidu Non-stop Train) with Baidu Zhidao (Baidu Knows), the Q&#38;A platform. So, what’s Baidu [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>At Baidu World Conference 2014 held in Beijing on September 3rd, Baidu introduced a new service named Baidu Zhida.</p>
<p><img class="alignnone" src="https://chineseseoshifu.com/wp-content/uploads/2014-09/baidu-zhida.png" alt="Baidu Zhida" width="695" height="251" /></p>
<p>I assume Pinyin may kill a large portion of our readers, so first let me make sure you don’t confuse Baidu Zhida (Baidu Non-stop Train) with Baidu Zhidao (Baidu Knows), the Q&amp;A platform.<span id="more-2552"></span></p>
<h2>So, what’s Baidu Zhida?</h2>
<p><a href="http://zhida.baidu.com/">Baidu Zhida</a> is based on <a href="http://qing.baidu.com/">Baidu Light App</a>, a free mobile site/app creation tool with basic features as well as advanced protocols. You can not only use the existing templates and modules of Baidu Light App to create a very functional mobile site, but also leverage the APIs for more powerful features.</p>
<p>What makes Baidu Zhida special is by inputting “@your-company-name” in the search box of Baidu Mobile, users can directly go to the official mobile site of your company, instead of the normal mobile search result page.</p>
<h2>Will Baidu Zhida be a success?</h2>
<p>My answer is yes.</p>
<p>I’m quite optimistic about the future of Baidu Zhida and Baidu Light App, because Baidu Zhida really solves the pains of enterprises, especially small businesses, at least in two ways:</p>
<ol>
<li>Zero or low-cost mobile site creation solutions. By using Baidu Light App, you can create a functional HTML5 site/app in ten minutes, without sucking up to your IT guys or coughing up money to hire a web design company.</li>
<li>Since users can directly go to your official mobile site by searching “@your-company-name”, your cost of brand keywords in Baidu pay-per-click advertising will decrease.</li>
</ol>
<p><strong>Why Baidu wants you to get a mobile site free?</strong></p>
<p>Because Baidu’s main source of revenue is Baidu pay-per-click advertising. By giving business owners free mobile sites, Baidu will see more companies, who previously don’t have mobile sites and are reluctant to try Baidu PPC on mobile devices, start to investing (more).</p>
<p><strong>How to get your own Baidu Zhida account?</strong></p>
<p>For now, Baidu Zhida is still invitation-only. But I think it will be soon available to everyone, as mobile is one of the strategic focuses of today’s Baidu.</p>
<p>If you are an impatient guy like me, you can request an invitation by emailing <a href="mailto:ext_zhida@baidu.com">ext_zhida@baidu.com</a>, in the following format:</p>
<blockquote><p>Subject: 申请直达号邀请码—Your Company Name</p>
<p>Content: Company name, company introduction, main contact, and phone number.</p></blockquote>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/baidu-share-social-bookmarking-sharing-service-from-baidu.html" rel="bookmark" title="Baidu Share &#8211; social sharing service from Baidu">Baidu Share &#8211; social sharing service from Baidu </a></li>
<li><a href="https://chineseseoshifu.com/blog/force-baidu-not-to-convert-your-site-for-mobile.html" rel="bookmark" title="Force Baidu Not to Convert Your Site for Mobile">Force Baidu Not to Convert Your Site for Mobile </a></li>
<li><a href="https://chineseseoshifu.com/blog/mobile-seo-for-baidu.html" rel="bookmark" title="Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices">Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>Common Misunderstandings About Baidu</title>
		<link>https://chineseseoshifu.com/blog/common-misunderstandings-about-baidu.html</link>
		<pubDate>Thu, 07 Aug 2014 14:26:37 +0000</pubDate>
		<dc:creator><![CDATA[David]]></dc:creator>
				<category><![CDATA[Baidu SEO Guide]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2496</guid>
		<description><![CDATA[Everyday I am being asked a lot of questions about Internet stuff in China, especially questions about Chinese search engines, both at work and off work. One of the topics I have been asked about most is accusations or misunderstandings about Baidu. Please don’t get me wrong. I’m in no defence of Baidu, and to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img src="https://c2.staticflickr.com/4/3902/14665216110_b9a3254e02_b.jpg" alt="" /></p>
<p>Everyday I am being asked a lot of questions about Internet stuff in China, especially questions about Chinese search engines, both at work and off work. One of the topics I have been asked about most is accusations or misunderstandings about Baidu.</p>
<p>Please don’t get me wrong. I’m in no defence of Baidu, and to me, Baidu is far from being an enterprise that fulfils its social responsibility.</p>
<p>I am writing this post, simply because sometimes I see people misunderstand, or wrong Baidu, and it’s worth demystifying it.</p>
<p>Below are the three most common misunderstandings about Baidu:</p>
<p><span id="more-2496"></span></p>
<h2>You have to pay Baidu to let your site rank</h2>
<p>False, if you mean organic search results.</p>
<p>I guess this accusation is somewhat subconsciously related to China’s infamous corruption and bribery issues.</p>
<p>You don’t have to pay Baidu to let your website rank on Baidu. And, I don’t think there is a way to pay Baidu to let their core search engineer team tweak their billion dollar machine, only to give you special treatment.</p>
<h2>You need a .cn domain and a China-based server.</h2>
<p>Not necessarily.</p>
<p>I don’t have detailed market share data for domain extensions in China, but below are the Alexa top 10 Chinese websites:</p>
<p><img src="https://c2.staticflickr.com/4/3862/14665368717_bb5b622eab_b.jpg" alt="" /></p>
<p>You can see the majority use .com domains, and only 2 use .cn domains.</p>
<p>A China-based server usually equals better access speed than overseas hosted websites. But again, it’s an advantage, rather than a must for Baidu.</p>
<h2>Baidu ranks its own products higher</h2>
<p>This is a tricky question that can not be answered by true or false.</p>
<p>It is not rare to see Baidu’s own products, such as Baidu Zhidao and Baidu Wiki, have good rankings on Baidu. But does that mean there is “guanxi” under the table?</p>
<p>Not necessarily, because Baidu Zhidao and Baidu Wiki usually have quality content that satisfy the needs of Baidu’s users, so why shouldn’t they have good rankings?</p>
<p>Got your own questions about Baidu or Internet stuff in China? Don’t hesitate to leave a comment and I am happy to share my thoughts.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/4-ways-to-leverage-baidu-zhidao.html" rel="bookmark" title="4 Ways to Leverage Baidu Zhidao">4 Ways to Leverage Baidu Zhidao </a></li>
<li><a href="https://chineseseoshifu.com/blog/are-cn-domains-favored-by-chinese-search-engines.html" rel="bookmark" title="Are .CN Domains Better for Baidu or Chinese SEO?">Are .CN Domains Better for Baidu or Chinese SEO? </a></li>
<li><a href="https://chineseseoshifu.com/blog/some-questions-and-answers-from-baidu-webmaster-club.html" rel="bookmark" title="Some questions and answers from Baidu Webmaster Club">Some questions and answers from Baidu Webmaster Club </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>Google Fonts Unstable in China &#8211; Here is How to Fix It</title>
		<link>https://chineseseoshifu.com/blog/google-fonts-instable-in-china.html</link>
		<pubDate>Sat, 28 Jun 2014 16:51:56 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Performance Optimization]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2451</guid>
		<description><![CDATA[Since June, the instability of Google&#8217;s services has reached a whole new level in China. Google Web Search and Gmail were accessible very occasionally before that, but now it&#8217;s safe to say they are almost totally unusable. Moreover, a new victim has joined the list this time &#8211; Google Fonts. Google Fonts is a free [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Since June, the instability of Google&#8217;s services has reached a whole new level in China. Google Web Search and Gmail were accessible very occasionally before that, but now it&#8217;s safe to say they are almost totally unusable.</p>
<p>Moreover, a new victim has joined the list this time &#8211; Google Fonts.</p>
<p>Google Fonts is a free font service that makes it very easy to integrate beautiful and cross-browser fonts into websites.</p>
<p>However, with it blocked in China, although your website has installed Google Fonts, it will not work properly on your site.</p>
<p>What&#8217;s worse, your site&#8217;s load speed will also be affected, because your website contains an external source that is blocked and takes very long to load.</p>
<h2>So How to Fix This Mess?</h2>
<p>Luckily, fixing this is easy. Qihoo 360 has offered a free mirror of Google Fonts on their own CDN servers across China.</p>
<p>For example, below is the original code on your site:</p>
<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:1em .6em;">
<pre style="margin: 0; line-height: 125%"><span style="color: #008000; font-weight: bold">&lt;link</span> <span style="color: #7D9029">href=</span><span style="color: #BA2121">&#39;http://fonts.googleapis.com/css?family=Open+Sans&#39;</span> <span style="color: #7D9029">rel=</span><span style="color: #BA2121">&#39;stylesheet&#39;</span> <span style="color: #7D9029">type=</span><span style="color: #BA2121">&#39;text/css&#39;</span><span style="color: #008000; font-weight: bold">&gt;</span>
</pre>
</div>
<p>Then you can simply change it to the following, to switch to Qihoo 360&#8217;s mirror:</p>
<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:1em .6em;">
<pre style="margin: 0; line-height: 125%"><span style="color: #008000; font-weight: bold">&lt;link</span> <span style="color: #7D9029">href=</span><span style="color: #BA2121">&#39;http://fonts.useso.com/css?family=Open+Sans&#39;</span> <span style="color: #7D9029">rel=</span><span style="color: #BA2121">&#39;stylesheet&#39;</span> <span style="color: #7D9029">type=</span><span style="color: #BA2121">&#39;text/css&#39;</span><span style="color: #008000; font-weight: bold">&gt;</span>
</pre>
</div>
<p>Now your site will be even faster to your Chinese audience, since the new css and font files are on 360&#8217;s own CDN in China.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/china-hosted-javascript-libraries-jquery-dojo-boostrap.html" rel="bookmark" title="Forget Google and Use These Hosted JavaScript Libraries in China">Forget Google and Use These Hosted JavaScript Libraries in China </a></li>
<li><a href="https://chineseseoshifu.com/blog/the-chasing-game-between-sougou-and-google-in-china.html" rel="bookmark" title="The Chasing Game Between Sougou and Google (in China)">The Chasing Game Between Sougou and Google (in China) </a></li>
<li><a href="https://chineseseoshifu.com/blog/add-ignored-chinese-search-engines-to-google-analytics.html" rel="bookmark" title="Add Ignored Chinese Search Engines to Google Analytics">Add Ignored Chinese Search Engines to Google Analytics </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>Top 8 Rules for WeChat Marketing</title>
		<link>https://chineseseoshifu.com/blog/top-8-rules-for-wechat-marketing.html</link>
		<pubDate>Mon, 07 Apr 2014 13:58:43 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[China Social Media]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2385</guid>
		<description><![CDATA[Social media marketing on WeChat is a little tricky, as I previously wrote about. However, if you already have an existing user base on other social media platforms like Weibo, you may as well bring them to your WeChat account. Yesterday I shared the slides below at a small local meetup, covering 8 rules that [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Social media marketing on WeChat is a little tricky, as I previously wrote about. However, if you already have an existing user base on other social media platforms like Weibo, you may as well bring them to your WeChat account.</p>
<p>Yesterday I shared the slides below at a small local meetup, covering 8 rules that we think the most important for WeChat marketing.</p>
<p><strong>Feel free to check it out:</strong></p>
<p><iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; max-width: 100%;" src="https://www.slideshare.net/slideshow/embed_code/33163605" width="700" height="570" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe></p>
<div style="margin: 1em 0 2em; text-align: center;"><strong> <a title="Top 8 Rules for WeChat Marketing" href="https://www.slideshare.net/chineseseoshifu/top-8-rules-for-wechat-marketing" target="_blank">Top 8 Rules for WeChat Marketing</a> </strong> from <strong><a href="https://www.slideshare.net/chineseseoshifu" target="_blank">Chinese SEO Shifu</a></strong></div>
<p>Whether you are an experienced WeChat marketer or are just about to get on WeChat, your comments are always welcomed.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/wechat-is-becoming-bad-for-marketing.html" rel="bookmark" title="WeChat is Becoming Bad for Marketing">WeChat is Becoming Bad for Marketing </a></li>
<li><a href="https://chineseseoshifu.com/blog/mobile-seo-for-baidu.html" rel="bookmark" title="Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices">Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices </a></li>
<li><a href="https://chineseseoshifu.com/blog/top-4-donts-of-microblog-marketing.html" rel="bookmark" title="Top 4 Don&#8217;ts of Microblog Marketing">Top 4 Don&#8217;ts of Microblog Marketing </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>Baidu Structured Data WordPress Plugin</title>
		<link>https://chineseseoshifu.com/blog/baidu-structured-data-wordpress-plugin.html</link>
		<pubDate>Mon, 31 Mar 2014 15:51:39 +0000</pubDate>
		<dc:creator><![CDATA[David]]></dc:creator>
				<category><![CDATA[Baidu SEO Guide]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2251</guid>
		<description><![CDATA[As SEOs, we all remember the old days when search engines were so dumb that they purely relied on meta tags to &#8220;understand&#8221; the content of a webpage. Although today&#8217;s search engines have much stronger and more intelligent text analysis abilities, webpage parsing can still be a challenge in many cases, given the fact that [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>As SEOs, we all remember the old days when search engines were so dumb that they purely relied on meta tags to &#8220;understand&#8221; the content of a webpage.</p>
<p>Although today&#8217;s search engines have much stronger and more intelligent text analysis abilities, webpage parsing can still be a challenge in many cases, given the fact that the websites and web apps are becoming increasingly complicated.</p>
<p><strong>That&#8217;s why search engines so love microdata.</strong></p>
<p><img src="https://farm8.staticflickr.com/7267/13540027653_24754491a6_c.jpg" alt="image" /></p>
<p>However, not like search engines like Google, Bing and other advocates for microdata, Baidu goes another way &#8211; it extends <a href="http://zhanzhang.baidu.com/wiki/197">the Sitemap protocol with a series of XML tags and elements</a>, and encourages webmasters to submit their content using the new standards, with the latest move of releasing a structured data plugin for WordPress.</p>
<p>Instead of inserting microdata markup to your WordPress site, Baidu&#8217;s plugin automatically creates Baidu-friendly Sitemap files and informs Baiduspider to crawl them.<span id="more-2251"></span></p>
<p><strong>The URL of the Sitemap file is something similar as below.</strong></p>
<div style="background: #f0f3f3; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: 1em .6em; margin-bottom: 25px;">
<pre style="margin: 0; line-height: 125%;">/wp-content/plugins/baidusubmit/sitemap.php?m=indexinc&amp;p=xxxxxxxxxx</pre>
</div>
<p><strong>A glimpse of the source codes</strong></p>
<p><img src="https://farm4.staticflickr.com/3704/13539060815_7f47ba7e06_c.jpg" alt="image" /></p>
<p>So if your Chinese website is based on WordPress, you may want to give the plugin a try.</p>
<p><strong>Download the plugin</strong>: <a href="http://zhanzhang.baidu.com/dataplug/index">http://zhanzhang.baidu.com/dataplug/index</a></p>
<p>Since this plugin is newly released, you are very welcomed to share your thoughts, experience and issues, and Shifu will be happy to have discussions with you.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/7-data-analysis-tips-to-make-you-from-a-rookie-to-a-veteran-rookie.html" rel="bookmark" title="7 Data Analysis Tips to Make You from a Rookie to a Veteran Rookie">7 Data Analysis Tips to Make You from a Rookie to a Veteran Rookie </a></li>
<li><a href="https://chineseseoshifu.com/blog/mobile-seo-for-baidu.html" rel="bookmark" title="Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices">Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices </a></li>
<li><a href="https://chineseseoshifu.com/blog/baidu-share-social-bookmarking-sharing-service-from-baidu.html" rel="bookmark" title="Baidu Share &#8211; social sharing service from Baidu">Baidu Share &#8211; social sharing service from Baidu </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
		<item>
		<title>Mobile SEO for Baidu &#8211; Rules, Tools and Best Practices</title>
		<link>https://chineseseoshifu.com/blog/mobile-seo-for-baidu.html</link>
		<pubDate>Mon, 10 Mar 2014 15:20:10 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Baidu SEO Guide]]></category>

		<guid isPermaLink="false">https://chineseseoshifu.com/?p=2225</guid>
		<description><![CDATA[According to Global mobile statistics 2013 Part A from mobiThinking, Chinese people really love cellphones. In 2013, the total number of mobile subscribers in China reached 12.18 billion, accounting for 90.2% of the entire population, and including 391 million 3G/4G subscribers. As the leading Chinese search engine on both PC and mobile devices, it would [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>According to <a href="http://mobithinking.com/mobile-marketing-tools/latest-mobile-stats/a">Global mobile statistics 2013 Part A</a> from <a href="http://mobithinking.com/">mobiThinking</a>, Chinese people really love cellphones. In 2013, the total number of mobile subscribers in China reached 12.18 billion, accounting for 90.2% of the entire population, and including 391 million 3G/4G subscribers.</p>
<p><img src="https://farm8.staticflickr.com/7421/13061239905_bd921a185b_o.png" alt="image" /></p>
<p>As the leading Chinese search engine on both PC and mobile devices, it would be insane for Baidu to ignore the demands of better user experience from this huge number of user base. So in 2013, Baidu has released quite a few guidelines, tools and articles to help webmasters standardize the optimization efforts for Baidu Mobile.</p>
<p>This article will serve as a definitive guide to Baidu mobile optimization, covering the rules, tools and best practices. If you are planing to optimize your website for Baidu Mobile, keep this article under your pillow.<span id="more-2225"></span></p>
<h2>Do You Have a Mobile Site?</h2>
<p><strong>Situation 1: You don&#8217;t have a mobile site.</strong></p>
<p>First, the good news is you don&#8217;t have to have a mobile site to do optimization for Baidu Mobile. Baidu has released a tool called <a href="http://siteapp.baidu.com/">SiteApp</a>, which can help you create an app-like mobile site based on the desktop version of your website.</p>
<p>This option suits small businesses that don&#8217;t have an extra budget for creating a mobile site or making the desktop website responsive.</p>
<p>And it&#8217;s pretty obvious that another option for those without a mobile site is just creating one, or making the existing PC site more responsive to suit the screen sizes of mobile devices.</p>
<p><strong>Situation 2: You have a mobile site.</strong></p>
<p>If you have a mobile website, it&#8217;s important to let Baidu distinguish it from the desktop site and properly display it in the search results of Baidu Mobile. Below are three ways to achieve this, to make Baidu&#8217;s and your lives easier:</p>
<p>Option 1 &#8211; you do the heavy lifting yourself</p>
<p>You will need to properly configure your server to let it recognize mobile devices and mobile crawlers. The easiest way is to detect the user agent. For example, the user agent name of Baidu&#8217;s mobile crawler is Baiduspider, the same with its desktop crawler. That of Google&#8217;s mobile crawler is Googlebot-Mobile, which is different than the name of its desktop crawler.</p>
<p>This can also be achieved by adding extra client-side Javascript or jQuery codes. I don&#8217;t recommend this method because this may only work for your mobile visitors but not search engine crawlers, as how web crawlers handle (complicated) Javascript codes is still a myth.</p>
<p>To make this easier, Baidu has also released an API for standardized device-detection. You can read more here: <a href="http://openapi.baidu.com/wiki/index.php?title=%E5%B8%AE%E5%8A%A9%E6%96%87%E6%A1%A3%E9%A6%96%E9%A1%B5/%E7%BB%88%E7%AB%AF%E9%80%82%E9%85%8D%E6%9C%8D%E5%8A%A1">百度终端适配服务</a> (The API document is in Chinese and doesn&#8217;t have an English version yet).</p>
<p>Option 2 &#8211; meta tag</p>
<p>Option 2 is a simpler one that most SEOs should be good at &#8211; adding meta tags to thesection of the PC web pages.</p>
<div style="background: #f0f3f3; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: 1em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #330099; font-weight: bold;">&lt;meta</span> <span style="color: #330099;">name=</span><span style="color: #cc3300;">”mobile-agent”content=”format=[wml|xhtml|html5];</span> <span style="color: #330099;">url=</span><span style="color: #cc3300;">url”</span><span style="color: #330099; font-weight: bold;">&gt;</span></pre>
</div>
<p>If a PC page on your site has a corresponding mobile page, you can use the meta tag above to inform Baidu.</p>
<p>Here is an example:</p>
<div style="background: #f0f3f3; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: 1em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #330099; font-weight: bold;">&lt;head&gt;</span>
<span style="color: #330099; font-weight: bold;">&lt;meta</span> <span style="color: #330099;">name=</span><span style="color: #cc3300;">”mobile-agent”</span> <span style="color: #330099;">content=</span><span style="color: #cc3300;">”format=html5;url=http://mobile-site.com/your-corresponding-mobile-page”</span><span style="color: #330099; font-weight: bold;">&gt;</span>
……
<span style="color: #330099; font-weight: bold;">&lt;/head&gt;</span></pre>
</div>
<p>Option 3 &#8211; sitemap</p>
<p>Using sitemap to inform Baidu of the relationships between the PC pages and mobile pages is another option. Baidu has released a <a href="http://zhanzhang.baidu.com/wiki/62#06">detailed guide</a> on how to adjust your sitemap file to meet the standards.</p>
<h2>Baidu Mobile Optimization Recommendations</h2>
<p>So you have a mobile/responsive site and Baidu can distinguish it. Now we need to optimize it for Baidu Mobile.</p>
<p>Baidu has released an official mobile SEO guide and below is the English version translated by Chinese SEO Shifu. We have omitted some common recommendations like &#8220;use a short domain name so visitors can remember it more easily&#8221;. Please also note we have not done quantitative tests to proof all the recommendations from Baidu can actually benefit your mobile SEO performance on Baidu, so please make choices based on your own wisdom.</p>
<p><strong>Baidu Mobile Optimization V1.1</strong></p>
<p>1. Make sure your robots.txt file doesn&#8217;t block Baiduspider. The mobile user agent of Baidu is still Baiduspider, not Baiduspider-mobile.</p>
<p>2. Use sub-domains or directories or organize your content, to make it have a clear structure.</p>
<p>3. Use the keywords meta tag for the home page and important directory pages.</p>
<p>4. Use the description meta tag for the home page and important directory pages.</p>
<p>5. Reduce or avoid broken links, and ensure the pages give correct status codes.</p>
<p>6. Use a home &lt;&#8211;&gt; directory &lt;&#8211;&gt; article flat content structure for your website.</p>
<p>7. Use breadcrumb navigations.</p>
<p>8. Write clear page title. For example:</p>
<p>homepage: site name_service or product description</p>
<p>directory page: directory name_site name</p>
<p>article page: article title_directory name_site name</p>
<p>9. Don&#8217;t use too many subdomains. For example, some online communities give each user a suddomain like username.a.com. Don&#8217;t do that.</p>
<p>10. Links a web page point to should give 200 status codes. Try avoiding errors and redirections.</p>
<p>11. When you are changing the domain, it is ideal you keep the URL structure unchanged. For example, you are changing from a.com to b.com. Old pages like a.com/abc/abc.html should be permanently redirected to b.com/abc/abc.html</p>
<p>12. Use correct DOCTYPE declarations, so search engines crawlers can detect if the web pages are suitable for mobile devices. For example, xhtml mobile sites can use the following DOCTYPE:</p>
<div style="background: #f0f3f3; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: 1em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #009999;">&lt;!DOCTYPE  html  PUBLIC  "-//WAPFORUM//DTD  XHTML  Mobile  1.0//EN"  "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"&gt;</span></pre>
</div>
<p>WML mobile sites:</p>
<div style="background: #f0f3f3; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: 1em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #009999;">&lt;!DOCTYPE  wml  PUBLIC  "-//WAPFORUM//DTD  WML  1.1//EN"  "http://www.wapforum.org/DTD/wml_1.1.xml"&gt;</span></pre>
</div>
<p>HTML5 mobile sites:</p>
<div style="background: #f0f3f3; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: 1em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #009999;">&lt;!DOCTYPE HTML&gt;</span></pre>
</div>
<p><strong>And here is the <a href="http://wenku.baidu.com/view/04518bf17c1cfad6195fa7c5.html">original Chinese version by Baidu</a> of the mobile SEO guide in Chinese.</strong></p>
<h3>Summary</h3>
<p>In general, to do mobile SEO for Baidu, if you already have a mobile site, you need to let Baidu recognize it first by using meta tags, sitemap or configuring your servers; If you don&#8217;t have a mobile site, then you can use Baidu&#8217;s SiteApp tool to quickly create one, or make your PC site more responsive to suit mobile devices.</p>
<p>After that, you can check the above mobile SEO recommendations from Baidu and work on your mobile site.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://chineseseoshifu.com/blog/force-baidu-not-to-convert-your-site-for-mobile.html" rel="bookmark" title="Force Baidu Not to Convert Your Site for Mobile">Force Baidu Not to Convert Your Site for Mobile </a></li>
<li><a href="https://chineseseoshifu.com/blog/top-8-rules-for-wechat-marketing.html" rel="bookmark" title="Top 8 Rules for WeChat Marketing">Top 8 Rules for WeChat Marketing </a></li>
<li><a href="https://chineseseoshifu.com/blog/chinese-keyword-research-tools.html" rel="bookmark" title="The Comprehensive List of Chinese Keyword Research Tools">The Comprehensive List of Chinese Keyword Research Tools </a></li>
</ol></p>
</div>
]]></content:encoded>
			</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.440 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2016-07-20 23:28:08 -->
