1

我一直在殴打自己,试图在我的 html 中获取我的 php 解析。我在 .htaccess 中使用了以下内容但无济于事。

AddType application/x-httpd-php .html - a dialog box pops up asking me to open a php file
AddType application/x-httpd-php5 .html - Same
AddHandler application/x-httpd-php .html - Same
AddHandler php-script .html - just doesnt parse but looking into the source code you can see the php
AddHandler php5-script .html - Same

我还想指出,普通的 .php 文件在服务器上运行良好。

是什么赋予了?

4

2 回答 2

1

您必须更改服务器配置。进入您的 httpd.conf 或 .htaccess 并更改此行(或接近它的内容):

addtype application/x-httpd-php .php

像这样解析 .html 文件:

addtype application/x-httpd-php .php .html

然后重启服务器

于 2012-12-02T19:35:51.773 回答
0

没关系,想通了。它与我的文档类型有关。short_open_tag 已启用,因此 php 正在尝试解析,因为它认为它是 php.ini 文件。

解决方案:

需要使用正确的 php 语法打印特定的行

<?php echo "<?xml version=\"1.0\" encoding=\"UTF-8\"; ?> ?>
于 2012-12-02T19:51:18.910 回答