私はherokuにデプロイされたレールアプリに取り組んでいます。application.html.erb ファイルの head タグ内に meta タグを配置しましたが、Google ではまだ変更されていません。5日以上待ちました。Google には、私のホームページから取得したテキストがまだ表示されています。
以下のページ ソースの抜粋に見られるように、自動生成されたように見える他の 2 つのメタ タグもあります (つまり、csrf-param と csrf-token)。これらは Google のメタ ディスクリプションに影響しますか。
以下は、関連ファイルの抜粋です。
application.html.erb のタグの抜粋:
<title><%= full_title(yield(:title)) %></title>
<%= stylesheet_link_tag "application", media: "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<%= render 'layouts/shim' %>
<meta name="App Name" content="App description.">
sitemap.xml の抜粋
<lastmod>2013-08-12T18:29:06+00:00</lastmod>
<changefreq>daily</changefreq>
Google Chrome のページ ソースの抜粋:
<html>
<head>
<title>App Name</title>
<link href="/assets/application-f915aa342a5dbd5b43771fda8cc.css" media="all" rel="stylesheet" type="text/css" />
<script src="/assets/application-6f2b9741258790f721edcb490ef.js" type="text/javascript"></script>
<meta content="authenticity_token" name="csrf-param" />
<meta content="DCzmx+4h+r3wNv5sMTwS7U5X7u/RizzttU4U9+23DgY=" name="csrf-token" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="App Name" content="App description.">
</head>