.htaccess - 在FastCGI上的.html文件中执行PHP

时间:2016-06-24 16:24:21

标签: php html .htaccess server fastcgi

我正在使用PHP和FastCGI,我有以下问题。我知道.htaccess的命令:

AddHandler fcgid-script .html
FcgidWrapper /path/to/php-fastcgi.fcgi .html

...但我不知道FcgidWrapper应指向的路径。它应该指向哪个文件或目录,通常在哪里?

谢谢!

2 个答案:

答案 0 :(得分:1)

你可以试试这个

<IfModule mod_fcgid.c>
<Files ~ (\.html)>
    SetHandler fcgid-script
    FCGIWrapper /var/www/cgi-bin/cgi_wrapper/cgi_wrapper .html
    Options +ExecCGI
    allow from all
</Files>

答案 1 :(得分:-1)

您要求的路径取决于系统,因此只有您的系统管理员才能回答该问题。您可能只需要用PHP重命名您的html文件即可使用php扩展。将没有php的html文件发送到fcgi是浪费。