Tembolok satu halaman dihidupkan (Magento EE ver 1.14.0.1). Namun, beberapa produk mengalami pengalihan setelah memukul URL. Tidak ada kesalahan dalam log. Jika saya menghapusnya full_page_cache
, maka sekarang akan berfungsi. Saya mencari full_page_cache
folder untuk URL yang bermasalah dan inilah yang saya dapatkan (dalam bentuk serial):
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',
)
Produk lain tidak memiliki ini:
3 =>
array (
'name' => 'Location',
'value' => 'http://www.example.com/this-is-the-product-url',
'replace' => true,
),
Jika saya menghapus cache halaman penuh, itu tidak akan terjadi, dengan demikian, produk-produk acak terputus-putus. Saya tidak bisa meniru apa penyebab redirect loop. Ada ide?