答案 0 :(得分:1)
你可以这样试试。阻止除localhost
或server IP address
之外的所有php文件。
对于Apache< 2.4 强>
<Files ~ "\.php">
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Files>
<Files "index.php">
Order Allow,Deny
Allow from all
</Files>
对于Apache&gt; = 2.4
<Files ~ "\.php">
Require all denied
Require ip 127.0.0.1
</Files>
<Files "index.php">
Require all granted
</Files>
Mamp应该使用Apache 2.4,所以第二个例子应该可行。