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