运行 一个没有扩展名的文件 php
Running an extension less file as php
我使用 .htaccess 运行 一个无扩展名的文件作为 PHP 使用
<Files thumbs>
SetHandler application/x-httpd-php
</Files>
但我将我的服务器更改为 CGI/FastCGI 从那以后这就不起作用了。我在网上和这里都尝试过,但找不到解决方案。
我也试过
<Files "thumbs">
ForceType application/x-httpd-php
</Files>
然后文件正在下载而不是执行。
通过将 application/x-httpd-php 设为 application/x-httpd-php5
来修复它
<Files thumbs>
SetHandler application/x-httpd-php5
</Files>
我使用 .htaccess 运行 一个无扩展名的文件作为 PHP 使用
<Files thumbs>
SetHandler application/x-httpd-php
</Files>
但我将我的服务器更改为 CGI/FastCGI 从那以后这就不起作用了。我在网上和这里都尝试过,但找不到解决方案。
我也试过
<Files "thumbs">
ForceType application/x-httpd-php
</Files>
然后文件正在下载而不是执行。
通过将 application/x-httpd-php 设为 application/x-httpd-php5
来修复它<Files thumbs>
SetHandler application/x-httpd-php5
</Files>