限制對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中文網其他相關文章!