Apache:如何配置 php-cgi.exe

Apache:如何配置 php-cgi.exe

我已经配置了 apache 以供使用,php-cgi如下所示:

<Directory "c:/wamp64/cgi-bin">
    AllowOverride All
    Options +ExecCGI
    AddHandler cgi-handler .php
    Action cgi-handler /local-bin/php-cgi.exe
    Require all granted
</Directory>


但由于的可访问性php-cgi.exe需要获得许可,因此我使用了以下块:

<Directory "c:/wamp64/bin/php7">
    Require all granted
</Directory>

这会导致安全问题吗?如果是,那么解决方案是什么?

相关内容