限制对 PHP 文件的直接访问
要防止对目录中除 index.php 之外的所有 PHP 文件进行未经授权的访问,您可以实现使用 Apache 的 .htaccess 文件的安全措施。
配置 .htaccess:
Order Deny,Allow Deny from all Allow from 127.0.0.1 <Files /index.php> Order Allow,Deny Allow from all </Files>
说明:
<FilesMatch ".*\.(css|js)$"> Order Allow,Deny Allow from all </FilesMatch>
注意:
以上是如何使用 .htaccess 限制对除 Index.php 之外的 PHP 文件的直接访问?的详细内容。更多信息请关注PHP中文网其他相关文章!