2010/09/18

The SEO of Blogger Title tag

The importance of <title> tag

The default setting of blogger for <title> HTML tag would be something like

Blogger name: Article name

However, with this kind of setting, it have lower probability for search engines to show your page at the top of the result list because what really matters is the article name instead of blogger name.

Therefore, I would like to show my page with <title> HTML tag in the following format:

Article name - Blogger name

In this case, the search engines would know the Article name is superior to Blogger name in the <title>, resulting in the PageRank of this page may have a higher value.

How to do?

1. Go to the page Design -> Edit HTML. Find the code like:

<title><data:blog.pageTitle/></title>

csie-tw.blogspot.com

2. Replace the code found in the step 1 by

<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/> - <data:blog.title/></title>
</b:if>

or replace code by the following, if you just want to show the Article name without Blogger name.

<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>

2010/09/08

下載FlashGet 1.94

FG

原創作者:FlashGet.Inc
軟體性質:免費軟體
語言介面:繁體中文
使用限制:非商業使用

快車(FlashGet)是互聯網上最流行,使用人數最多的一款下載軟體。採用多伺服器超線程技術、全面支援多種協議,具有優秀的檔管理功能。

FlashGet 支持 HTTP 、 FTP 、 BT 、 MMSRTSP 等多種協定,協定之間無縫相容,下載切換無需手工操作。 FlashGet One Touch 技術優化BT下載,獲取種子資訊後自動下載目標檔,無須二次操作。全方位支持BT種子製作發佈。

新版的FlashGet 3.5介面變複雜了,且多了很多廣告,還是FlashGet 1.94比較好用。

下載點1 (訊6空間,4.24 MB)

2024年React state management趨勢

輕量化 在過去Redux 是 React 狀態管理的首選函式庫。 Redux 提供了強大的功能和靈活性,但也帶來了一定的學習成本和複雜度。 隨著 React 生態的不斷發展,越來越多的開發者開始追求輕量化的狀態管理函式庫。 Zustand 和 Recoil 等庫以其簡單易用、性...