在 Prestashop 的每个子文件夹中,您可以找到一个index.php包含以下内容的文件:
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;
和一个.htaccess包含:
Order deny,allow
Deny from all
我知道 .htaccess 阻止用户访问该文件夹,但我更好奇他们对 index.php 做了什么,它到底做了什么?
万千封印