0

名前の付いたページが 1 つしかないサイトがあり、products.phpさまざまなカテゴリ (約 50 個) を のようなクエリ文字列で表示していますproducts.php?category=books。これで、URL のコンテンツ実験を設定しましたが、products.php?category=books他のカテゴリにアクセスしようとすると、前述のbooksカテゴリにリダイレクトされるという事実を除いて、すべて正常に機能しました。どうすればこれを機能させることができますか?

理想的には、すべてのカテゴリで機能する「動的」な実験を設定したいと考えていますが、カテゴリを 1 つだけ設定でき、他のすべてのカテゴリがそのbooksカテゴリにリダイレクトされないようにすることもできます。どんな助けでも大歓迎です。

4

1 に答える 1

1

解決策は実際には非常に単純でした。追加のパラメーターを使用せずに元の URL を使用して Content Experiments を設定するだけです。公式の Google アナリティクス サポート ページproducts.phpで説明されているように、それらが (存在する場合) 伝播されるためです。

3. URL parameters in your variation pages

If you set URL parameters in your variation pages, then Experiments incorporates
them into what the visitor sees. Let’s say you set your experiment pages as:

Original page: www.example.com/a
Variation page: www.example.com/b?id=50
If visitors arrive with no URL parameters, then they see one of these two pages:

Original page: www.example.com/a
Variation page: www.example.com/b?id=50
If visitors arrive with URL parameters that conflict, then the URL parameters you
supplied during the experiment setup override the URL parameters that visitors
arrive with.

For example, if the visitor clicks a link to www.example.com/a?id=1, the visitor sees one of these two pages:

Original page: www.example.com/a?id=1
Variation page: www.example.com/b?id=50
If visitors arrive with URL parameters that don’t conflict, then the URL parameters are
appended to the page URL. For example, if the visitor clicks a link to
www.example.com/a?cat=1, then the visitor sees one of these two pages:

Original page: www.example.com/a?cat=1
Variation page: www.example.com/b?id=50&cat=1
于 2013-02-26T11:55:27.913 に答える