Apache-2.2

使用 PHP 作為 FastCGI 的 Htaccess 應用程序/類型

  • August 15, 2013

有沒有辦法將 .htaccess 與 PHP 一起用作 CGI/FastCGI?

我希望能夠以 PHP 的形式打開其他擴展。

我嘗試了以下方法:

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

編輯:使用 PHP 作為 FastCGI 是否意味著除了 .htaccess 之外我還需要做其他事情?

我使用這些:

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

請注意,如果 PHP 內容不以開頭,PHP 將不會處理文件,<?php並且<?只有在 php.ini 允許的情況下才會處理文件

如果您希望能夠將它與 htaccess 一起使用 - 您將需要allowoverride它。

引用自:https://serverfault.com/questions/531027