2017-02-13 23 views
1

サイトmysite.comとサブドメインm.mysite.comがあります。 m.mysite.comへのmysite.comからモバイルデバイス用のリダイレクトのために、私はhtaccessファイル内のコードを以下の使用します。Googleのモバイル版へのリダイレクト禁止

<IfModule mod_rewrite.c> 
RewriteEngine on 
RewriteBase/

# Check if this is the noredirect query string 
RewriteCond %{QUERY_STRING} (^|&)m=0(&|$) 
# Set a cookie, and skip the next rule 
RewriteRule^- [CO=mredir:0:mysite.com] 

RewriteCond %{HTTP:x-wap-profile} !^$ [OR] 
RewriteCond %{HTTP:Profile}  !^$ [OR] 
RewriteCond %{HTTP_USER_AGENT} "acs|alav|alca|amoi|audi|aste|avan|benq|bird|blac|blaz|brew|cell|cldc|cmd-" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "dang|doco|eric|hipt|inno|ipaq|java|jigs|kddi|keji|leno|lg-c|lg-d|lg-g|lge-" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "maui|maxo|midp|mits|mmef|mobi|mot-|moto|mwbp|nec-|newt|noki|opwv" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "palm|pana|pant|pdxg|phil|play|pluc|port|prox|qtek|qwap|sage|sams|sany" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "sch-|sec-|send|seri|sgh-|shar|sie-|siem|smal|smar|sony|sph-|symb|t-mo" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "teli|tim-|tosh|tsm-|upg1|upsi|vk-v|voda|w3cs|wap-|wapa|wapi" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "wapp|wapr|webc|winw|winw|xda|xda-" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "up.browser|up.link|windowssce|iemobile|mini|mmp" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "symbian|midp|wap|phone|pocket|mobile|pda|psp" [NC] 
RewriteCond %{HTTP_USER_AGENT} !macintosh [NC] 

# Check if we're not already on the mobile site 
RewriteCond %{HTTP_HOST}   !^m\. 
# Can not read and write cookie in same request, must duplicate condition 
RewriteCond %{QUERY_STRING} !(^|&)m=0(&|$) 

# Check to make sure we haven't set the cookie before 
RewriteCond %{HTTP_COOKIE}  !^.*mredir=0.*$ [NC] 

# Now redirect to the mobile site 
RewriteRule^http://m.mysite.com%{REQUEST_URI} [R,L] 
</IfModule> 

することは今の問題は、画像がなくm.mysite.comでmysite.comでホストされているということで、電子メールメッセージに挿入され、Gmailに読み込まれません。おそらく、Googleのボットがm.mysite.comにリダイレクトされているためです。暫定的な決定は、m.mysite.comで電子メールの画像をホストすることでした。

私はRewriteCond %{HTTP_USER_AGENT} !macintosh [NC]後、のRewriteCondに別の条件を追加しました: RewriteCond %{HTTP_USER_AGENT} !^googlebot [NC] しかし、これは動作するようには思えません。 imageがm.mysite.comにない場合、Gmailではアクセスできません。

はUPD:助けをアビシェークのgurjarにRewriteCond %{HTTP_USER_AGENT} !^macintosh|GoogleImageProxy [NC]

ありがとう:

これは私の問題を解決した文字列です。

答えて

2

ルールの下の条件を試して、既存の同様のテスト条件をコメントアウトしてください。

RewriteCond %{HTTP_USER_AGENT} "symbian|midp|wap|phone|pocket|mobile|pda|psp" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} !^macintosh|Googlebot [NC] 
+0

たぶん、電子メール用の画像をつかむボットは別の名前ではなく、Googlebotのを持っている:(機能していません。 – Julia

+0

チェックをここでは、エージェント名のhttps://support.google.com/webmasters/answer/1061943?hl=en –

+0

「Googlebot」を「Google」に変更すると、私はそれを実現しました – Julia

関連する問題