我在html文件中添加了php代码,并将此文件作为.html扩展名运行。对于这种技术,我在.htaccess文件中添加了以下代码。
AddType application/x-httpd-php .html .htm
整个文件夹是wordpress项目文件夹的子目录。当我在服务器中运行此文件时,弹出窗口弹出,我的代码文件在弹出窗口中打开,它将提供下载选项。在哪里我可以看到整个代码。我该怎么做才能阻止弹出框下载并在html文件中运行php代码并以.html扩展名打开。
任何人都可以帮我,我该怎么办?
答案 0 :(得分:0)
为了在.html文件中使用php,您必须将它们与HTTP服务器配置文件中的PHP处理器相关联。在Apache中,看起来像这样:
AddHandler application/x-httpd-php .html
答案 1 :(得分:-1)
您的php代码块必须位于代码
内
<?php
// Your php code might not work here
?>
<!DOCTYPE html>
<html>
<?php
// Your php code will work here
?>
<head>
<title>Title</title>
</head>
<body>
<?php
// Your php code will also work here
?>
</body>
</html>
&#13;