Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
SPA SEO
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
blue chen
February 27, 2014
Technology
870
12
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
SPA SEO
at Happy designer meetup 2014.02.27
blue chen
February 27, 2014
More Decks by blue chen
See All by blue chen
RelaJet Caption
iamblue
0
150
The future of hearing device - 聽覺領域新的機會及挑戰
iamblue
2
300
20180918-Digitime 導入MCU設計 催熟智慧語音辨識應用市場
iamblue
0
270
Pixnet hackthon - workshop
iamblue
0
150
AI 人工智慧學校分享
iamblue
0
460
Javascript -Full stack 物聯網開發
iamblue
0
180
MCS Lite 私有雲物聯網開發
iamblue
0
340
Blockchain for IoT 應用
iamblue
1
280
2017.01.16 Embedded system
iamblue
0
170
Other Decks in Technology
See All in Technology
LLMリーダーボードアップデートに向けたAgentic Math_SWEのトレースについて
nejumi
0
210
タクシーアプリ『GO』の実践的データ活用〜位置情報データの収集とStreamlitでの可視化〜
mot_techtalk
2
200
AI驚き屋発見器
yama3133
2
400
第3回しろおびセキュリティスポンサーセッション
log0417
0
130
AI駆動開発は個人技からチーム戦へ:組織でAIを使いこなすための実践設計
moongift
PRO
0
420
検索技術知識0のエンジニアが広告検索システムを内製化して運用するまで
lycorptech_jp
PRO
0
210
データエンジニアこそ組織のオントロジーに向き合うべき — 問いに答えるAIから、事業を動かすAIへ
gappy50
7
3.2k
NYC Summit 2026 におけるAmazon Bedrock AgentCore のアップデート
ren8k
3
330
AI ネイティブな組織に Gemini Enterprise Agent Platform がなぜ必要なのか
asei
1
160
Pavlokで始める電撃駆動開発
sgrsn
0
160
現場で使える AWS DevOps Agent 活用ノウハウ - Release Management 機能の検証結果を添えて / AWS DevOps Agent Release Management and Know-How
kinunori
5
930
初めてのGitHub Actions / GitHub Actions at First
tooppoo
0
140
Featured
See All Featured
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
Visual Storytelling: How to be a Superhuman Communicator
reverentgeek
2
610
GitHub's CSS Performance
jonrohan
1033
470k
Optimizing for Happiness
mojombo
378
71k
Winning Ecommerce Organic Search in an AI Era - #searchnstuff2025
aleyda
1
2.1k
SERP Conf. Vienna - Web Accessibility: Optimizing for Inclusivity and SEO
sarafernandez
2
1.5k
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.7k
Practical Orchestrator
shlominoach
191
12k
Rebuilding a faster, lazier Slack
samanthasiow
85
9.6k
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
890
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
254
22k
Why Our Code Smells
bkeepers
PRO
340
58k
Transcript
I am Blue Web engineer @ YouMeb
⽤用nginx 1. SEO基礎 本⽇日⼤大綱 2. How to make SPA app
SEO friendly 3. 如何⾃自動化部屬SEO內容? 4. 溫馨⼩小提醒
SEO 基礎
Web Crawler
講到蜘蛛...我就想到.... 三級的天擎坦克被它摧毀了T.T 蜘蛛好像很厲害?
! SEO crawler 並⾮非很聰明
<html> <head> <title>這是title</title> </head> <body> <h1>Hello World!</h1> </body> </html> <html>
<head> <title>{{ title }}</title> </head> <body> <script> //do some ajax awesome thing.. </script> </body> </html> 靜態網⾴頁(無ajax) 靜態網⾴頁(有ajax)
So…要如何告訴這些 Crawler 你的網站是⽀支持AJAX呢?
www.example.com/ajax.html#mystate 網址有兩種 ! www.example.com/mystate 無hash: 有hash: 如何告訴這些 Crawler 你的網站是⽀支持AJAX呢? www.example.com/#/mystate
www.example.com/ajax.html#mystate 從網址下⼿手(有hash) 1. www.example.com/ajax.html#!mystate
www.example.com/ajax.html#!mystate 當 Crawler 收到要爬這段網址內容時 www.example.com/ajax.html?_escaped_fragment_=mystate 會對你的server發⼊入下列request (以google crawler 為例)
www.example.com/ajax.html?_escaped_fragment_=mystate 你的server接受到這樣的訊息時 回傳 crawler 對應的 SEO Data page/內容 (以google crawler
為例)
從網址下⼿手(無hash) 2. <meta name=”fragment” content=”!”> 請在<head>加⼊入: www.example.com?_escaped_fragment_=mystate (以google crawler 為例)
AngularJS解法 3. 有hash: 無hash: <meta name=”fragment” content=”!”>
! ⽩白話理解 crawler 對server請求流程
None
google/facebook crawler your app server www.example.com/mypage#!home 會發出⼀一段特殊的請求網址 回傳 SEO data
rendering page
Make SPA app SEO friendly
多數的語⾔言 framework 框架 SPA SEO 解決⽅方案
<html> <head> <title><%= title %></title> </head> <body> <h1>Hello World!</h1> </body>
</html> 當餵給crawler前,SEO Data 被先在server端印好輸出 Nodejs EJS <html> <head> <title>hello</title> </head> <body> <h1>Hello World!</h1> </body> </html> Nodejs 印出這些變數 crawler res.render({title:’hello’});
每個使⽤用者進來都會先經過SEO data Output 缺點 浪費資源
加上...如果前端的⾴頁⾯面只是靜態檔案怎辦? (像是yeoman產⽣生的app)
還是要有⼀一個東⻄西去處理餵給crawler SEO data 2. 架⼀一個nodejs server 處理(網址複雜) 1. 直接nginx指向(網址簡單) 3.
nodejs+nginx
直接nginx處理 但網址複雜很⿇麻煩
⼀一台 nodejs server 直接來
nginx + nodejs nginx 過濾來⾃自crawler 還是 user ? nodeJS 處理rending
page
nginx 靜態⾴頁⾯面路徑 SEO server ⼀一般使⽤用者 crawler nodejs server 處理 SEO
data render
Nginx設定 你的處理SEO data render Nodejs server位置 因為各家的crawler發出請求格式不⼀一 最好⽅方式是⽤用user agent在經過nginx時過濾
live demo
如何⾃自動化部屬SEO內容
⽤用nginx facebook . google friendly SEO data內容 image, title,url, description,og系列
! 那網站內容呢?
html-snapshots 1. use phantomJS 2. ⽀支援輸出 sitemap.xml, robots.txt,
arbitrary input 3. 有grunt版本
$ npm install grunt-html-snapshot
None
網站圖⽚片截圖:https://github.com/clkao/prerender-opengraph-image
live demo
溫馨⼩小提醒
⽤用nginx 知此知彼 https://support.google.com/webmasters/answer/164734?hl=zh-Hant 了解 SEO也要了解 search engine policy
End.