0

我想在我的 URL 中添加一些参数,以便我可以识别访问者是否通过单击主页链接、顶部导航、底部导航等打开了页面。所以类似于:

(此处不能发布超过两个链接)

但是,我想确保搜索引擎不会认为这是一个单独的页面,并且我的页面上有很多重复的内容。我认为有一些“行业标准”的方法可以做到这一点,以明确我的参数只是用于统计的内部标志,并不表示不同的内容。但是我在谷歌搜索时找不到相关的搜索结果;不知道如何搜索这个。

所以我的问题是:有没有一种方法我应该命名或使用 URL 参数来确保搜索引擎意识到这些链接的重要性?

4

2 回答 2

1

1) Google 在索引页面时会忽略#URL 中的所有内容,因此请使用 # 而不是?... 然后,出于 SEO 目的,Google 将考虑:

http://example.com/pagename.htmlhttp://example.com/pagename.html#var1=FOO&var2=BAR成为同一页。

2)您还可以在页面头部设置:

<link rel="canonical" href="http://www.example.com/pagename.html" />

见:http: //googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html

3)就报告而言,在谷歌分析中,他们支持使用#查询字符串分隔符,请参阅:https ://developers.google.com/analytics/devguides/collection/gajs/methods/gaJSApiCampaignTracking#_gat.GA_Tracker_._setAllowAnchor

4)在您的谷歌分析配置文件中,您还可以将其设置为排除查询字符串参数。请参阅: http: //support.google.com/analytics/bin/answer.py ?hl=zh-CN&answer=1010249

我更喜欢方法 #1。我所有的营销活动跟踪 URL 和所有内部链接和逻辑都#用作查询字符串分隔符,因此我可以将我的链接汁最大化到我在 .htaccess 中设置的规范域(我的规范中没有 www 子域):

Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
于 2012-08-30T20:43:47.440 回答
0

事实证明,有一组可用的参数。他们是:

Campaign Source (utm_source)
Required. Use utm_source to identify a search engine, newsletter name, or other source. 
Example: utm_source=google

Campaign Medium (utm_medium)
Required. Use utm_medium to identify a medium such as email or cost-per- click. 
Example: utm_medium=cpc

Campaign Term (utm_term)
Used for paid search. Use utm_term to note the keywords for this ad. 
Example: utm_term=running+shoes

Campaign Content (utm_content)    
Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL. 
Examples: utm_content=logolink or utm_content=textlink

Campaign Name (utm_campaign)
Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign. 
Example: utm_campaign=spring_sale

可以在此处阅读更多内容:http: //support.google.com/analytics/bin/answer.py ?hl=en&answer=1033867

不确定这是否是“行业标准”,但至少它是分析支持的。

于 2012-08-15T02:10:29.440 回答