フルページキャッシュがオンになっている(Magento EE ver 1.14.0.1)。ただし、一部の製品では、URLにアクセスしたときにリダイレクトループが発生しています。ログにエラーはありません。をクリアするfull_page_cache
と、機能するようになります。full_page_cache
問題のあるURLのフォルダーを検索したところ、次のものが得られました(シリアル化された形式):
array (
'cache_subprocessor' => 'Enterprise_PageCache_Model_Processor_Product',
'current_product_id' => '400',
'response_headers' =>
array (
0 =>
array (
'name' => 'Content-Type',
'value' => 'text/html; charset=UTF-8',
'replace' => false,
),
1 =>
array (
'name' => 'X-Frame-Options',
'value' => 'SAMEORIGIN',
'replace' => true,
),
2 =>
array (
'name' => 'P3p',
'value' => 'CP="CAO PSA OUR"',
'replace' => true,
),
3 =>
array (
'name' => 'Location',
'value' => 'http://www.example.com/this-is-the-product-url',
'replace' => true,
),
),
'routing_aliases' =>
array (
'rewrite_request_path' => 'this-is-the-product-url',
),
'routing_requested_route' => 'catalog',
'routing_requested_controller' => 'product',
'routing_requested_action' => 'view',
'sid_cookie_name' => 'frontend',
)
他の製品にはこれがありません:
3 =>
array (
'name' => 'Location',
'value' => 'http://www.example.com/this-is-the-product-url',
'replace' => true,
),
全ページキャッシュをクリアしても、ランダムプロダクトが断続的に発生することはありません。リダイレクトループの原因を再現できませんでした。何か案が?
私もこれと同じ問題に直面しており、今まで解決策は見つかりませんでした。
—
Anshu Mishra
@AnshuMishra、他のキャッシュメカニズム、つまりcloudlflareを使用していますか?
—
user1240207 2015
デフォルトのMagentoキャッシュメカニズム以外に、Google Page Speedを使用しています
—
Anshu Mishra 2015