 |
|
 |
 |
■ 登錄障礙: |
 |
以下是一些妨礙尋找引擎搜索的拌腳石:
- CGI
尋找引擎不會搜索以 CGI 或 Database 產生的網頁。
- 在 URLs 中含特別的符號
例如連結中包含符號 ? 會令尋找引擎停止搜尋該線索。
- 一圖多連結(Image Map)
普遍尋找引擎不會搜索 Image Map 所作的連結,解決方法便是加上文字連結於網
頁下方。
- 框架(Frame)
很多尋找引擎并不會按框架的框窗搜索下去,它只會記錄該一頁。網上框架的使
用者多不勝數,但正如其它篇章常提及它是易學難精而又危險的一門技巧。
| ■ 框架使用的提示:
|
不支援框架的尋找引擎會如舊式的瀏覽器一樣解讀 <noframes> 標記中的東西,如果該一
首頁沒有採用 Meta 標記的話,你的網頁在尋找引擎中的描述便是 <noframes> 中的文字,
例如: Sorry! You need a frames-browser to view this page.
而且就算你的網頁有幾百頁,它都只記下這一頁,你當然不願意吧,當然利用 Meta 標記
可以解決一部分的問題,但有些尋找引擎并不支援 Meta 標記,它還是喜歡到網頁內容中
搜索,所以 <noframes> 標記的正確使用便顯得重要了。
正確的做法便是在 <noframes> 標記中放入:
- <body> 標記。這是尋找引擎及瀏覽器所需要的。
- 標題。
- 200 個字元以上的網頁描述。
- 一個連到其它頁的連結,好讓尋找引擎搜索下去。
例如:
<noframes>
<body>
<h1>Penpal Garden - Free Penfriendship service</h1>
We provide free international pen friendship service, bringing people with similar interests together. Thousands of penpal member
come from all around the world. If you want to make friends on net you sure come to the right place.
<p><a href="index2.html">Go to the non-frame version</a>
</body>
</noframes>
|
|
 |