忘れていくのでメモ。
SEO関連
- タイトル・h1にターゲットキーワードを含有させる。
- URLに年度などの表記が入っているものを統一。
- canonical/alternate タグの設置。
- サイトマップ / sitemap.xml の見直し
- テキスト増強
- 内部リンクアンカーテキスト最適化
- パンくずリスト最適化(カテゴリなどを含める)
- URL重複排除(index.phpありなし、wwwありなしなど)
- noindexの付与
- キーワードが重複してるページの精査
構造化データ
- 各ページ毎に構造化データを設置。
- 商品ページにはProduct、記事ページにはArticle、などなど
Product
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Product",
"name": "Executive Anvil",
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
],
"description": "Sleeker than ACME's Classic Anvil, the Executive Anvil is perfect for the business traveler looking for something to drop from a height.",
"mpn": "925872",
"brand": {
"@type": "Thing",
"name": "ACME"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.4",
"reviewCount": "89"
},
"offers": {
"@type": "Offer",
"priceCurrency": "JPY",
"price": "100",
"priceValidUntil": "2020-11-05",
"itemCondition": "http://schema.org/UsedCondition",
"availability": "http://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Executive Objects"
}
}
}
</script>
Article
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "NewsArticle",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://google.com/article"
},
"headline": "Article headline",
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
],
"datePublished": "2015-02-05T08:00:00+08:00",
"dateModified": "2015-02-05T09:20:00+08:00",
"author": {
"@type": "Person",
"name": "John Doe"
},
"publisher": {
"@type": "Organization",
"name": "Google",
"logo": {
"@type": "ImageObject",
"url": "https://google.com/logo.jpg"
}
},
"description": "A most wonderful article"
}
</script>
構造化データについて
https://developers.google.com/search/docs/guides/search-gallery
https://support.google.com/merchants/answer/6386198?hl=ja
その他
- 導線の改善、表示速度の改善などなどなど
地道にコツコツやっていくことですが、ふとした時にやろうとしてめっちゃ工数かかるなんてこともおおおおお(血涙
都度見直していくのが大事ですね(´・ω・)(・ω・`)ネー