전체 페이지 캐시 무한 리디렉션


9

전체 페이지 캐시가 켜져 있습니다 (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

답변:


3

Stock magento (타사 모듈 없음)를 사용하고 있고이를 경험하는 경우 정의 된 캐싱 메커니즘이 원인 일 수 있습니다. 현재 블록 캐싱 local.xml및 FPC 캐싱에 enterprise.xml무엇을 사용하고 있습니까?

다음은 FPC를 더 잘 이해하는 데 도움이 될 수있는 다른 관련 문서입니다.

여기에 이미지 설명을 입력하십시오


enterprise.xml에서 여기 : <cache> <request_processors> <ee> Enterprise_PageCache_Model_Processor </ ee> </ request_processors> <frontend_options> <slab_size> 1040000 </ slab_size> </ frontend_options> </ cache> <full_page_cache> <backend> Mage_Cache_Backend_File </ backend> <backend_options> <cache_dir> full_page_cache </ cache_dir> </ backend_options> </ full_page_cache>
user1240207
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.