在Apache服务器上将特定的.htm页面处理为.php

时间:2012-06-27 20:00:25

标签: php html apache .htaccess

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

3 个答案:

答案 0 :(得分:4)

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

<Files first.htm>
    AddType application/x-httpd-php .htm
</Files>

答案 1 :(得分:3)

也可以使用

SetHandler指令:

  

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

     

放入.htaccess文件或或   section,该指令强制解析所有匹配的文件   处理程序名称给出的处理程序。

<Files first.htm>
    SetHandler application/x-httpd-php
</Files>

答案 2 :(得分:2)

<Files first.htm>
    ForceType application/x-httpd-php
</Files>