如何查詢網站的關鍵字排名

我們在這幾天,搜索了一下網站關鍵字的排名,發現如果是靠肉眼去數排名次序,
是有些費神的,所以就找到了下列網站,其中一個查詢的網站,精準率是相當高的,
值得大家來試試:

=========================================
查詢的網站: http://unethost.com
搜索關鍵字: 外國主機
=========================================

網站: http://dir.twseo.org/keywordrank.php
精準度: 普通

同時是否可輸入多字串: 否 

01.關鍵字排名查詢工具

===========================================================

http://smallseotools.com/keyword-position/
精準度: 相當高(推薦使用)
同時是否可輸入多字串: 是

02

中文次域名的設置

我們在 http://unethost.com/host/idn-converter 有介紹轉換國際域名的編碼方式。有些客戶,會要求使用中文域名,是為了幫助瀏覽器上搜索及seo排名。經我們的測試後發現,原不是使用國際域名的網址,也能夠變化出中文域名的子域名(sub domain)。

以下是我們使用 cpanel 控制台的設定教學:

 

1. 首先,要在http://unethost.com/host/idn-converter 先產生出相對應的 idn (punycode).

 

2. 登入 cpanel 控制台後,點選子網域功能。

 

3.  將相對應的 punycode 填入,並建立。

 

4. 正式產生子網域。

 

5.  將 xn--unethost-eh0mj59aq49coli.tw-blog.com 貼到瀏覽器上,就會自動轉換成中文域名。

如何將「主域名」指向「子資料夾」

客戶常常有一種情況,把論壇或是CMS的主程式,灌在public_html這個資料夾下的某個子資料夾,例如bbs,之後又提交服務單給身為主機商的我,希望他的網址,可以是 http://example.com/index.php 而不是 http://example.com/bbs/index.php 簡單的說,就是希望可以做apache mod_rewrite把子資料夾(subdirectory)的路徑去掉。

要做這件事,步驟如下:
(1) 在public_html下,新增一個.htaccess
(2) 在.htaccess檔案,複製貼上,下方的內容。並且替換example.com為客戶的主域名,替換subdirectory為客戶的子資料夾,替換index.html為子資料夾裡的索引檔。

# UnetHost.com
# .htaccess main domain to subdirectory redirect
# Copy and paste the following code into the .htaccess file
# in the public_html folder of your hosting account
# make the changes to the file according to the instructions.
# Do not change this line.
RewriteEngine on
# Change example.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
# Change ‘subdirectory’ to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/subdirectory/
# Don’t change these line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change ‘subdirectory’ to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /subdirectory/$1
# Change example.com to be your main domain again.
# Change ‘subdirectory’ to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ subdirectory/index.html [L]

如何透過shell script來做domain name的篩選

如果從cpanel WHM抓出所有主機的域名(domain name)時,往往會發現,子域名(sub domain) 和頂層域名(top level domain) 是混雜的。

這時候,可以用基本的sed來做篩選。做法如下:
在一個文字檔 list 裡放所有的域名,例如:

aa.bb.com
cc.net
1123.org
1aa.bbcd.com

下指令:
cat list | sed -e “/[^\.]*\.[^\.]*\.[^\.]*/d” | sort

即可抓出所有想要的top level domain。( 這個指令的功能就是把所有的sub domain刪去而已。)

lolipop

話說,我們這種當主機商的,通常都會買幾個域名,用來做為共用的域名,凡是有客戶不想要自己花錢買域名的,就直接用我們的公用的,他自己選一個子域名即可。

讓我們來看一下,日本人是怎麼做生意的,佩服啊! XD
http://lolipop.jp/service/domain/list/

靠靠靠,lolipop.jp這家公司,居然準備了整整150種共用域名給客戶選…
客戶選擇使用免費的domain,也還有150種選擇…真是太用心了

而且,再來仔細看看:
這150個domain也不是亂選的,是有種類有意義的!
(1)流行類
(2)酷類
(3)簡短類
(4)有意義類
(5)可愛類
(6)怪怪類

以我個人來講,主機這個行業,能變化的東西不多,像日本的這家lolipop能在共用的域名這一塊,作出變化,做出差異化的服務,真是令我好生佩服。