전체 페이지 캐시가 켜져 있습니다 (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
기본 Magento 캐싱 메커니즘 외에 Google Page Speed를 사용하고 있습니다
—
Anshu Mishra