開発中のサイトでFetch As Googleを利用する
私のやり方が正しいのか自信はありませんが、
試してみたら出来たので備忘録として書きます。
実装
こんな風にGoogleBotだけBASIC認証を解除したら、サイトをクロールしてくれます。
.htaccess
AuthUserFile /path/to/project/.htpasswd
AuthType Basic
AuthName "Web access"
Require valid-user
Satisfy any
BrowserMatchNoCase Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) isGoogleBot=1
BrowserMatchNoCase Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 isGoogleBot=1
allow from env=isGoogleBot
やりたいこと
- GoogleBotから自分のサイトがどのように見えるのかを確認したい
やり方
- Google Search ConsoleのFetch As Googleを用いる
- 開発中のサイトURLをGoogle Search Consoleに登録し、一度GoogleBotにクロールしてもらう
問題
- 開発中のサイトはBASIC認証を設けているため、GoogleBotからはアクセスできない
考えた対処策
- GoogleBotのUser-AgentだけBASIC認証を解除したらクロールできるのでは? できた。
備考
GoogleのUAは以下のサイトから確認できます
https://support.google.com/webmasters/answer/1061943?hl=ja
Author And Source
この問題について(開発中のサイトでFetch As Googleを利用する), 我々は、より多くの情報をここで見つけました https://qiita.com/qwe001/items/61dd6717a28216e0b415著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .