我在 vps 上安装了 ubuntu 16.0.4。我无法从 html 文件运行 php 代码。我添加了一个 .htaccess 文件,其中包含以下代码:
AddType application/x-httpd-php5 .html .htm
并在 /etc/apache2/mods-enabled/php7.0.conf 上执行以下代码:
<FilesMatch ".+\.html$">
SetHandler application/x-httpd-php
</FilesMatch>
有什么建议吗,因为代码无法运行。如果我把 .php 文件放进去,它就可以工作了。index.html 上的 php 代码是:
<?php echo "Hello"; ?>