开发者

html w/php powered pages not displaying; downloadable?

开发者 https://www.devze.com 2023-02-11 07:13 出处:网络
When I try to load a php inside an html page, somepage.html ... It brings up a download box. AddHandler application/x-httpd-php .html

When I try to load a php inside an html page, somepage.html ... It brings up a download box.

AddHandler application/x-httpd-php .html
AddType a开发者_开发技巧pplication/x-httpd-php html

Those were generated in my cpanel but still it shows a download box instead of the code.

What do I do?

Also additional information:

Apache version  2.2.17
PHP version     5.3.4


Not sure, but you can try:

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

Took it from this blog post.

EDIT: Just saw that you're using PHP inside .html files. Can't you just change the extension?

0

精彩评论

暂无评论...
验证码 换一张
取 消