我正在开发一个部署在 heroku 上的 rails 应用程序。我在 application.html.erb 文件的 head 标记中放置了一个元标记,但它在 Google 上尚未更改。我已经等了5天多了。Google 仍在显示从我的主页获取的文本。
还有另外两个元标记似乎是自动生成的,如下面的页面源代码摘录所示(即 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>