SEO(搜尋引擎優化)是現今網路行銷中不可或缺的一環。這篇文章總結我過往實作 SEO 的基礎概念、重要元素,以及如何透過實際操作來提升網站的可見性與流量。不論是初學者還是有經驗的開發者,都可以從中學到有效的技巧,並應用在自己的網站上。
SEO(搜尋引擎優化)透過內容和技術的改善,幫助網站在搜尋引擎中的自然排名提升。以下介紹 SEO 的基本概念與程式面可以做的優化方式。
SEO 是指通過優化網站內容和技術,以提高網站在搜尋引擎中的自然排名和可見度的過程。透過 SEO 優化,網站在使用者搜尋相關關鍵字時更容易被搜尋引擎找到,吸引更多訪客。(簡單來說就是獲得免費的廣告XD)
<head>
標籤中,告訴搜尋引擎和用戶此頁面的主題。<head>
<title>專業服務與解決方案 - 優化技術與應用</title>
</head>
<head>
中,為搜尋引擎結果頁(SERP)提供頁面摘要。<meta name="description" content="提供專業技術與解決方案,提升應用程式效能,簡化使用體驗。">
標籤:<h1>
到<h6>
,用於組織內容結構。
<h1>
,包含主要關鍵字。<h2>
到 <h6>
組織副標題,包含次要關鍵字。alt
屬性描述圖片內容,以提高無障礙性。<img src="images/logo.png" alt="公司標誌" title="專業技術服務">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "技術服務公司",
"url": "https://www.example.com",
"logo": "https://www.example.com/logo.png",
"contactPoint": [{
"@type": "ContactPoint",
"telephone": "+123456789",
"contactType": "客服",
"areaServed": "TW",
"availableLanguage": ["Chinese"]
}]
}
</script>
測試結構化數據:Google Rich Results Test
<head>
中添加 <meta name="keywords">
標籤。<meta name="keywords" content="技術服務, AI 應用, 系統開發, 方案解決">
<head>
中添加相應的 meta
標籤。<head>
<meta property="og:title" content="技術服務公司 - 提供 AI 應用方案" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.example.com/index.html" />
<meta property="og:image" content="https://www.example.com/logo.png" />
<meta property="og:description" content="專業 AI 應用服務,提升工作效率。" />
<meta property="og:site_name" content="技術服務公司" />
</head>
robots.txt
文件,設置適當的規則。# 允許所有搜尋引擎抓取
User-agent: *
Disallow: /private/ # 禁止抓取 /private/ 目錄
Disallow: /test.html # 禁止抓取特定頁面
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.example.com/index.html</loc>
<lastmod>2024-10-25</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.example.com/about.html</loc>
<lastmod>2024-10-25</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
-
分隔詞語,避免無意義參數。https://www.example.com/product-optimization.html
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<a href="product-details.html" title="產品詳情">
產品詳情
</a>
<head>
中使用 Canonical 標籤。<link rel="canonical" href="https://www.example.com/main-page.html">
<header>
、<nav>
、<footer>
。noindex
、nofollow
。<meta name="robots" content="index, follow">
教學就到這邊啦~👍如果有興趣也可以到我的個人blog逛逛🎉
Blog: https://blog.jhaochen.com/
文章連結: https://blog.jhaochen.com/docs/seo