html w / php驱动的页面没有显示;下载的?

时间:2011-02-17 18:28:18

标签: php .htaccess

当我尝试在html页面中加载php时,somepage.html ...它会打开一个下载框。

AddHandler application/x-httpd-php .html
AddType application/x-httpd-php html

这些是在我的cpanel中生成的,但仍显示下载框而不是代码。

我该怎么办?

还有其他信息:

Apache version  2.2.17
PHP version     5.3.4

1 个答案:

答案 0 :(得分:1)

不确定,但您可以尝试:

AddType application/x-httpd-php .php .htm .html
AddHandler x-httpd-php .php .htm .html

Took it from this blog post.

编辑:刚看到你在.html文件中使用PHP。你不能只改变扩展名吗?