9月份在搭建我們的第一個适合智能手機、平闆電腦的移動版本網站“手機版郵編庫”的時候,我們根據Google移動網站地圖的規範,對Drupal自動生成的xmlsitemap進行了相應的人工修改,提供給搜索引擎抓取。昨天再次查看這個手機版本郵編庫網站地圖時,發現10月份這個地圖進行了自動更新,生成的新地圖沒有人工修改來符合Google移動網站地圖規範,于是今天早上再次修改,并将一些要點記錄如下。
外部資料鍊接:
- Google 移動網址
- 向站點地圖添加移動網址信息
- Adding mobile URL information to a Sitemap
- 移動網站地圖的例子:http://www.google.com/mobilesitemap.xml
- http://www.google.com/schemas/sitemap-mobile/1.0/
移動網站地圖例子:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0">
<url><loc>http://www.google.com/xhtml</loc><lastmod>2004-10-01T23:05:32+00:00</lastmod><mobile:mobile/></url>
<url><loc>http://www.google.com/xhtml/en-help.html</loc><lastmod>2004-09-30T22:10:32+00:00</lastmod><mobile:mobile/></url>
<url><loc>http://www.google.com/xhtml/ja-help.html</loc><lastmod>2004-10-01T23:05:32+00:00</lastmod><mobile:mobile/></url>
<url><loc>http://www.google.com/wml?site=local</loc><mobile:mobile/></url>
<url><loc>http://www.google.com/wml/help</loc><mobile:mobile/></url>
<url><loc>http://www.google.com/chtml/doc.html</loc><mobile:mobile/></url>
<url><loc>http://www.google.com/sprint3g/help.html</loc><mobile:mobile/></url>
</urlset>
從上面的例子看,與普通的sitemap相比較,就是有兩個地方不同:
- 一是在開頭的urlset中添加了xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0"
- 二是在每個url中添加了<mobile:mobile/>
從上面的說明來看,移動網站地圖其實與普通網站地圖的區别很小,隻要我們稍微改動一點就可以了。我們在Drupal中也另外做了設置,不讓這個被我們人工改動的地圖自動更新,免得在不知情時被覆蓋。
评论