<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SEO 搜尋引擎最佳化 &#187; 其他優化技巧.</title>
	<atom:link href="http://seo.list.tw/category/other_seo_technique/feed/" rel="self" type="application/rss+xml" />
	<link>http://seo.list.tw</link>
	<description>SEO 搜尋引擎優化基礎、關鍵字廣告 與 搜尋行銷</description>
	<lastBuildDate>Sun, 13 Sep 2009 15:19:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>圖片註明高度、寬度有助加速網頁下載速度</title>
		<link>http://seo.list.tw/imagespeed/</link>
		<comments>http://seo.list.tw/imagespeed/#comments</comments>
		<pubDate>Wed, 20 May 2009 02:01:16 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[其他優化技巧.]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://seo.list.tw/?p=701</guid>
		<description><![CDATA[過去有些國外研究顯示，八秒是網站使用者最高的忍受時間；首頁如果下載時間超過這關鍵的八秒，網站使用者就換轉向另外一個網站。
因此，網站速度的優化是 webmaster 必須注意的地方。現在的網頁製作方式跟過去有點不一樣，我們提供了很多 WYSIWYG (What You See is What You Get) 的工具給 end user 。這些網頁的生手很多時候未必注意到他們每一個動作仍然影響網頁的表現。
在網頁圖片的管理上，要注意的除了圖片本身的大小及畫質之間的平衡外，在 HTML Coding 上很多時候被忽略的就是圖片的 Height 以及 Width 的註明。
如果圖片的實際大小與網頁上的顯示大小一致，就算不註明 Height 跟 Width，對顯示的結果並沒有影響。因此，很多 webmaster 為了一時之快，有時候會忽略註明這兩個 attributes：
&#60;img src=&#8217;logo.jpg&#8217;  alt=&#8217;某某公司 Logo&#8217;&#62;
忽略註明這 Height 跟 Width 兩個 attributes 讓瀏覽器必須等待圖片完整下載完畢才能進行排版跟畫面調整的動作。相反，如果先註明好 Height 跟 Width，瀏覽器就不需要等待，一邊調整好畫面、一邊讓圖片下載，網頁速度上相對上就比較有優勢：
&#60;img src=&#8217;logo.jpg&#8217; height=&#8217;100&#8242; width=&#8217;40&#8242; alt=&#8217;某某公司 Logo&#8217;&#62;
尤其是當網頁主機放在國外、伺服器放置在公司內部、或者對圖片使用比重高的網頁來說，這個標準動作更必須要注意。不然就算 SEO 做得再好，使用者對網頁的速度失去耐性的話，一切的工夫心血也是白費。
Post from: SEO.LIST.TW
圖片註明高度、寬度有助加速網頁下載速度
<p>Post from: <a href="http://seo.list.tw">SEO.LIST.TW</a></p>
<p><a href="http://seo.list.tw/imagespeed/">圖片註明高度、寬度有助加速網頁下載速度</a></p>
]]></description>
		<wfw:commentRss>http://seo.list.tw/imagespeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress &#8220;All in One SEO&#8221; Plugin 的 title tag 亂碼解決方法</title>
		<link>http://seo.list.tw/wordpress-all-in-one-seo-plugin-title-tag/</link>
		<comments>http://seo.list.tw/wordpress-all-in-one-seo-plugin-title-tag/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 06:37:12 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[其他優化技巧.]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://61.31.198.50/~simonseo/seo.list.tw/?p=434</guid>
		<description><![CDATA[安裝 Wordpress 其實還算好玩，很多插件可以選擇，加上自己東改改西改改，玩了我好幾個晚上。
進入最後可以上線的狀況，發覺 Category 的 Title 第一個字出現亂碼。主要原因是 &#8220;All in One SEO&#8221; Plugin 裡面使用 ucwords 函數。
&#8220;All in One SEO&#8221; 可以說是 WP 最受歡迎的 Plugin 程式，讓你可以為每頁的內容定義 Title, Meta Description 以及 keywords。
偉大的搜尋引擎讓我很快的找到解決方案，將 all_in_one_seo_pack.php 裡面的 capitalize function 改寫為：
function capitalize($s)
{
$s = trim($s);
$tokens = explode(&#8217; &#8216;, $s);
for ($i = 0, $n = count($tokens); $i &#60;$n; $i++)
{
$matches = array();
preg_match(&#8217;/^(.{1})(.*)$/us&#8217;, $tokens[$i], $matches);
$tokens[$i] = strtr($matches[1], [...]<p>Post from: <a href="http://seo.list.tw">SEO.LIST.TW</a></p>
<p><a href="http://seo.list.tw/wordpress-all-in-one-seo-plugin-title-tag/">Wordpress &#8220;All in One SEO&#8221; Plugin 的 title tag 亂碼解決方法</a></p>
]]></description>
		<wfw:commentRss>http://seo.list.tw/wordpress-all-in-one-seo-plugin-title-tag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>新站 vs 老站 ，SEO 是薑愈老愈辣？</title>
		<link>http://seo.list.tw/site-age/</link>
		<comments>http://seo.list.tw/site-age/#comments</comments>
		<pubDate>Sat, 07 Apr 2007 05:14:47 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[其他優化技巧.]]></category>
		<category><![CDATA[site age]]></category>

		<guid isPermaLink="false">http://61.31.198.50/~simonseo/seo.list.tw/?p=58</guid>
		<description><![CDATA[網站的年齡是否跟 SEO 有密切的關係？

答案是 “YES! and No!” 
排名跟網站年齡的確有些關係，但是是否很重要，其實倒不一定。網站的年齡愈高，理論上，SEO的分數也相對比較高。網路上對這條件有很多的解讀：

1. 網站年齡根據網址註冊的時間計算？
2. 網站年齡根據外部的連結存在來計算？
3. 網站年齡根據網站在線上的時間來計算？
也有很多網站評論哪種說法是對的、哪種說法是錯的。我們應該養成習慣不去評論某些技巧是對還是錯，而是從邏輯去判斷是否合理，其他請順其自然。
順其自然的原因是，現在沒有的規則不代表未來沒有，現在做不到的判斷不代表未來作不到。訂立這些比對判斷規則、開發最新搜尋比對技術的搜尋引擎工程師都是世界頂尖的工程師，你不是要跟他們比吧？
理論基礎：薑是老的辣
道理上，的確存活得愈久的網站，的確 credibilty (可信賴度) 愈高，就像一個老人家說話往往比一個小夥子說話可信，我想這是這個理論的基礎。
有爭議的基礎，自然影響力低
 『薑是老的辣』這個理論基礎本身，你我都知道有相當大值得爭議的地方，因為：
1. 跟判斷一個人是否值得信賴一樣，年齡並不代表一切；
2. 自身重要的網站往往不論年紀多大，都可以從其他的角度切入判斷其重要性；
3. 自身是乏味、內容無意義的網站，也同樣可以存活很久。
光從這幾點，我們就知道如果以網站年齡來判斷，不論用網址註冊年紀來判斷、或者用搜尋紀錄來計算，都不足以成為一個決定性的條件。
既然不足以成為決定性的條件，其實你我都知道他的重要性並不高，如果浪費時間在打『舊網址』的主意，倒不如將精力放在其他更有用的方面。
Post from: SEO.LIST.TW
新站 vs 老站 ，SEO 是薑愈老愈辣？
<p>Post from: <a href="http://seo.list.tw">SEO.LIST.TW</a></p>
<p><a href="http://seo.list.tw/site-age/">新站 vs 老站 ，SEO 是薑愈老愈辣？</a></p>
]]></description>
		<wfw:commentRss>http://seo.list.tw/site-age/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
