我使用.htaccess使用
以PHP格式运行无扩展名文件<Files thumbs>
SetHandler application/x-httpd-php
</Files>
但是我将我的服务器更改为CGI / FastCGI,因为这不起作用。我在网上试过,但也找不到解决办法。
我也试过
<Files "thumbs">
ForceType application/x-httpd-php
</Files>
然后文件被下载而不是执行。
答案 0 :(得分:1)
通过将application / x-httpd-php作为application / x-httpd-php5
进行修复<Files thumbs>
SetHandler application/x-httpd-php5
</Files>