seo china
Bing and Google SEO comparison on Keywords
Jun
Bing gives a lot more weight to keywords in urls than google.
How do I know that
I tested it!Actually, I was comparing bing and google with this simple yet efficient tool, and this is how I got the first impression that bing answers were containing more often the keyword in the website url than on google.
So here’s the test I did
I searched for 50 random (almost) keywords, and I took for each query the first 50 responses of bing and the first 50 responses of google. Which means I checked :
50(keywords) x 50(responses) x 2 (search engines : google and bing) = 5000 links
Don’t worry, I wrote a script for that ;o)
Then I checked if the keyword was (or wasn’t) in the URL of the websites.
Example : I search for the keyword “paris”
So I count this :

I don’t count that :

And here’s what I found :
| For Bing : 86,52% of the first 50 websites contained the keyword in the URL. |
| For Google : 71,16% of the first 50 websites contained the keyword in the URL. |
and don't tell me that this was really dependent on the keywords in my list of 50 keywords.Why? Because bing was showing more websites (with the keyword in the url) than google .... 92% of the time.
So, yes, putting the keywords in the url is really important for BOTH. But it seems that it’s a lot more important for the new Microsoft search engine “Bing”.
So if your strategy is focusing on bing for some niche keyword/market, don’t even think of not putting the keywords in your url or domain name.
Well, I think it’s a bad idea to put such a big weight on the keywords in the url, they should focus more on the content. Besides…this is gonna give more weight to hundred of thousands of parked domains… because domain resellers usually buy domains with keywords in them...
If you’re thankful happy I spent the day programming that script, and then sharing this information with you, I wouldn't mind you talk about it, vote for it on digg (check on the right side bar) or link back to here ;o)
Here are the stats for those of you who want all the figures :
| keywords | nb of sites with the keyword in the url for google | nb of sites with the keyword in the url for bing |
| test | 25 | 34 |
| seo | 28 | 33 |
| funny | 34 | 44 |
| hello | 42 | 45 |
| welcome | 25 | 20 |
| surprise | 35 | 47 |
| love | 39 | 47 |
| there | 32 | 45 |
| boat | 40 | 46 |
| cars | 30 | 38 |
| design | 45 | 44 |
| pay | 41 | 46 |
| remember | 37 | 47 |
| lyrics | 42 | 45 |
| songs | 25 | 32 |
| manchester | 46 | 48 |
| paris | 42 | 49 |
| beijing | 40 | 48 |
| china | 39 | 45 |
| stop | 44 | 47 |
| photos | 22 | 36 |
| hill | 44 | 47 |
| bikes | 30 | 40 |
| pens | 28 | 40 |
| software | 33 | 41 |
| games | 32 | 39 |
| computers | 17 | 35 |
| folk | 40 | 47 |
| how | 34 | 45 |
| when | 23 | 45 |
| miss | 40 | 49 |
| area | 36 | 46 |
| paper | 34 | 49 |
| headset | 32 | 46 |
| iphone | 42 | 41 |
| news | 37 | 43 |
| php | 47 | 48 |
| drupal | 43 | 44 |
| marketing | 37 | 46 |
| english | 35 | 38 |
| write | 28 | 47 |
| script | 43 | 48 |
| manuel | 35 | 48 |
| language | 35 | 45 |
| tutorial | 36 | 36 |
| berlin | 45 | 47 |
| shanghai | 33 | 44 |
| trip | 43 | 46 |
| casino | 32 | 43 |
| finance | 32 | 44 |
| Average number of sites with the keyword in url (among the first 50) | 35,58 | 43,26 |
| total sites with keywords (of the 2500 checked) | 1779 | 2163 |
| total sites checked | 2500 | 2500 |
| % of sites among the 50 firsts with the keyword in the url | 71,16% | 86,52% |
How to optimize your chinese urls for Baidu (2/2)
May
(you can find the first post on how to optimize your chinese urls for baidu here)
In this post you will learn seo tips for generating seo friendly urls, especially in the case of chinese content : url rewriting, url aliasing and transliteration for chinese title. Then we will put in practice this tips with drupal.
1- Url rewriting
First of all, i hope you all already activated url rewriting for your website, it is a very basic thing when you begin to think about your search engine optimization.
What does it mean ?
Except if you create all your web pages manually, when you use a framework or a CMS to generate your pages, urls would usually look like:
htpp://www.example.com?q=node/1.
Your aim is to clean all the mess in that kind of urls and make it more search engine friendly.
There are two places where you can apply the rewriting :
- let the web server manage it : for example in apache in your .htaccess file
- manage it in your code, by using aliases for your pages
This 2 ways can be combined, for example in drupal, the "?q=" will be removed by apache and the aliases are handled by the drupal php code.
and so
htpp://www.example.com?q=node/1
become as by magic :
http://www.example.com/my-article-title
2- Url aliasing
Of course you can create and manage your aliases manually, but for a large website the best thing to do is to automate this action.
For example you can build a system that take your page titles and creates an alias with it.
A good idea cause most of the time, important keywords will be already in the title of your page, so that will improve your SEO.
But don't forget, there is a pretty annoying limit in the actual web standards : url encoding should only use ASCII character-set. So when you alias your urls, you should remove all special characters, accents, spaces and of course... chinese characters!
We've already seen last time that webmasters are using url encoding functions to deal with this issue. For example in php you can use this urlencode() function : http://cn.php.net/urlencode.
It simply returns a string in which all non-alphanumeric characters except "-" "_" and "." have been replaced with a percent (%) sign followed by two hex digits, like it is said in the web bible.
But this is not the optimum, and you will have to adapt this function in order not to encode some special characters like "é" "à" and "ç"... but just replace them by e a c; and also replace spaces by a "-". In that way search engines can still understand and distinguish your words and keywords.
3- transliteration for chinese characters
Let's see the case of chinese characters now.
The best search engine friendly solution is to automatically change your titles into pinyin cause web search engines are able to :
- recognize pinyin
- identify pinyin words
- link pinyin words and chinese characters
So if you are talking about cars on a chinese website page and your page's title is 汽车.
Now if you use the transliteration into pinyin of this title for your url (http://example.com/qiche), search engines will be able to recognize in this url that the page is about cars. (qiche is the pinyin for cars)
And so you will improve your rankings ;o)
4- using drupal with transliteration
Using the powerful web framework drupal, you will be able to activate all this tips almost without touching a piece of code (we know, that's amazing). I listed for you the modules you will need to activate :
- Clean url : simply activate this to remove the "?q=" in the url
- Path : add the possibility to rename URLs using aliases
- Pathauto : provides a mechanism for modules to automatically generate aliases for the content they manage (using page titles for example)
- Transliteration : provides a central service for transliteration
Then, in your pathauto.inc file, simply add this line of code line 170 :
if (module_exists('transliteration'))
{ $output = transliteration_get($output); }
You should now have dramatically improved your url search engine optimization for chinese content!
would you have good or bad comments, please write them below.
cheers
Baidu Rank in Chinese
May
We released a new tool so that you can check your rank both in english and chinese. You can check at the same time your ranking in baidu and google. For sure, if you are looking to develop on the chinese market, you will find this tool useful.
Just type in directly your hanzi (chinese characters) and you will see your rankings in baidu, google USA, France, Germany and China of course. You can also have your pagerank on the same page.
So, don't forget to bookmark the page which is here (Baidu Rank Check)
If you want to link to that page in your blog or website, here is the address :
<a href="http://www.them.pro/google-rank-tool" title="baidu rank check google rank check"> Baidu Rank Check</a>
How to optimize your chinese urls for Baidu (1/2)
Apr
How to use Chinese urls, or pinyin url? In this post you will learn SEO tips and discover very useful tools to automatically transliterate your chinese title into pinyin and make your internal urls search engine friendly !
First let's go through some basics and theory.
1- SEO friendly URL
You certainly already heard that urls are taken into consideration by search engines like baidu or google in the page ranking. A page with keywords in it's url would have a better ranking than the same one without keywords. That's why a classic first step of SEO experts consist in enhancing urls of a website.
Let say you are in charge of a wine e-business, a good SEO compliant url for your product would look like :
www.firstwine.com/red-wine/france/bordeaux/fronsac/chateau-richelieu
This way search engines will be able to associate keywords "red wine", france, bordeaux, fronsac, chateau richelieu, to your page.
2- URL Encoding
According to the RFC1738 (http://www.rfc-editor.org/rfc/rfc1738.txt), urls should only use ASCII character-set.
(http://www.w3schools.com/TAGS/ref_ascii.asp). It's a bit annoying cause this set is very basic, it contains only 128 characters : alpha-numeric characters and some special char.
But since the ASCII character-set is used to send information between computers on the Internet, urls have to comply this rule too.
To ensure we use the right encoding, webmasters use url encoding functions when they create internet pages and when they display urls.
URL encoding replaces none or unsafe ASCII characters specified in the rfc, with "%" followed by some hexadecimal digits corresponding to the character values in the ISO-8859-1 character-set.
Let see what we get :
"vins français" will be alter to "vins+fran%E7ais"
...not very user or SEO friendly
"葡萄酒" turns to "%26%2333889%3B%26%2333796%3B%26%2337202%3B"
hmm... not user friendly and certainly not SEO friendly
So how to deal with that ?
How to enhance your url for SEO when you are using a non ASCII character set language (like french or chinese for example !)
Well, simply by contacting SEO professionals Them (www.them.pro)... ;o)
...or read the next post, I will explain in details how to automatically transliterate your chinese page title into pinyin and use it for your urls with CMS drupal. so, stay tuned...




