Htaccess 应用程序/类型,以 PHP 为 FastCGI

Htaccess 应用程序/类型,以 PHP 为 FastCGI

有没有办法将 .htaccess 与 PHP 一起使用作为 CGI/FastCGI?

我希望能够将其他扩展作为 PHP 打开。

我尝试了以下方法:

AddType application/fcgid-script .phpd
AddHandler fcgid-script .phpd

编辑:使用 PHP 作为 FastCGI 是否意味着我除了 .htaccess 之外还需要做其他事情?

答案1

我用的是这些:

AddHandler php-fastcgi .php .php5
AddType text/html .php .php5
DirectoryIndex index.php index.php5

注意,如果 PHP 内容不是以 开头,PHP 将不会处理文件<?php,并且<?仅在 php.ini 允许的情况下才会处理以 开头的文件

如果您希望能够将它与 htaccess 一起使用 - 那么您就需要allowoverride它。

相关内容