尺码表在线生成 insize.app 已经上线快一个月了,真实用户每天都在增长,新用户来源主要是靠推荐,种子用户用了感觉不错,推荐给了身边的卖家,今天把网站提交给了几大搜索引擎,搜索引擎离不开内容,所以开了一个 insize 的博客站点,名字叫 inSize – 最高效的尺码生成工具 ,这个站点主要是产生内容,做好 SEO ,所以也得提交给几个搜索引擎。
网站提交给 Google
主要是面向外贸卖家,这些卖家基本上都可以上 Google,Bing 之类的搜索引擎,所以第一个要提交的是 Google。
Google 提交入口
当 Google 验证你是网站所有者之后,你就可以提交站点地图了。
网站提交给 Bing
外贸卖家用 Bing 的也不少(数据来源于我的博客),所以我把网站也提交给了 Bing。
Bing 提交入口
Bing 也会验证网站的所有者,验证通过后,也可以提交 sitemap。
提交给百度
百度的提交体验真的是太难用了,忍气吞声的提交了。
百度提交入口
提交了,状态一直是等待中,不知道什么时候才能收录。
提交给头条
我的博客有不少量是从头条搜索引擎过来的,所以我顺便也把 insize.app 提交给了头条,反正提交的成本也不大,能引来点流量是一点,边际成本很轻。
头条搜索引擎提交入口
头条的收录速度比百度快很多,并且也支持 sitemap。
提交给搜狗
偶尔也有点量,所以顺便也提交了,反正边际成本等待 0。
搜狗提交入口
搜狗不支持 sitemap,只能一条一条提交。
怎么样生成 sitemap
因为我用的是 wordrpess,所以我用了一个插件,插件叫 Yoast SEO ,很好用,有免费版,如果是付费版,有点小贵。
Yoast 设置
如果 wordpress 没有开启 Rewrite,那 Yoast 生成的 sitemap.xml 是访问不到的,必须在 nginx 上面添加 Rewrite 规则。
#Yoast SEO Sitemaps
location ~ ([^/]*)sitemap(.*).x(m|s)l$ {
## this rewrites sitemap.xml to /sitemap_index.xml
rewrite ^/sitemap.xml$ /sitemap_index.xml permanent;
## this makes the XML sitemaps work
rewrite ^/([a-z]+)?-?sitemap.xsl$ /index.php?yoast-sitemap-xsl=$1 last;
rewrite ^/sitemap_index.xml$ /index.php?sitemap=1 last;
rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 last;
## The following lines are optional for the premium extensions
## News SEO
rewrite ^/news-sitemap.xml$ /index.php?sitemap=wpseo_news last;
## Local SEO
rewrite ^/locations.kml$ /index.php?sitemap=wpseo_local_kml last;
rewrite ^/geo-sitemap.xml$ /index.php?sitemap=wpseo_local last;
## Video SEO
rewrite ^/video-sitemap.xsl$ /index.php?yoast-sitemap-xsl=video last;
}
参考
https://yoast.com/help/xml-sitemaps-nginx/