发新话题
打印

如何完全禁止apache一个目录的解php权限?

如何完全禁止apache一个目录的解php权限?

想给人开一个目录  
只有解释.html.htm权限  
没有任何cgi解释权限  
怎么设置?

TOP

我也想知道答案,观察中!!!

TOP

<Directory  "e:/webroot/test">  
       <Files  ~  ".php">  
       Order  allow,deny  
       Deny  from  all  
       </Files>  
</Directory>  

try  this

TOP

发新话题