3

我正在为 Apache 服务器编程,我只需要一个特定的 html 页面(比如 first.htm)作为 PHP 脚本处理。是否可以设置?

4

3 回答 3

4

SetHandler也可以使用指令:

强制处理程序处理所有匹配的文件

当放入 .htaccess 文件或 a or 部分时,该指令强制所有匹配的文件通过 handler-name 给出的处理程序进行解析。

<Files first.htm>
    SetHandler application/x-httpd-php
</Files>
于 2012-06-27T20:10:34.077 回答
3

创建一个名为的文件.htaccess并将其放置在该文件所在的目录中。将此行添加到 ti:

<Files first.htm>
    AddType application/x-httpd-php .htm
</Files>
于 2012-06-27T20:03:21.090 回答
2
<Files first.htm>
    ForceType application/x-httpd-php
</Files>
于 2012-06-27T20:07:24.920 回答