如何将PHP代码/文件添加到HTML(.html)文件? [英] How do I add PHP code/file to HTML(.html) files?

查看:107
本文介绍了如何将PHP代码/文件添加到HTML(.html)文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法在我的HTML页面中使用PHP。例如, index.html 。我尝试过使用两种方法:

 <?内容?> 

 <?php内容> 

这些都不起作用。我的服务器提供PHP,当我使用 .php 扩展名时,它可以正常工作。这是一个问题,还是必须更改 php.ini 中的偏好设置?

解决方案

您不能在.html文件中运行PHP,因为除非您告诉它,否则服务器不会将其识别为有效的PHP扩展。要做到这一点,你需要在你的根目录下创建一个.htaccess文件并添加下面的代码:

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

这将告诉Apache使用.htm处理文件或.html文件扩展名为PHP文件。


I can't use PHP in my HTML pages. For example, index.html. I've tried using both:

<? contents ?> 

and

<?php contents ?> 

Neither of these work. My server offers PHP, and when I use a the .php extension, it works properly. Is this a problem or do I have to change the preferences in php.ini?

解决方案

You can't run PHP in .html files because the server does not recognize that as a valid PHP extension unless you tell it to. To do this you need to create a .htaccess file in your root web directory and add this line to it:

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

This will tell Apache to process files with a .htm or .html file extension as PHP files.

这篇关于如何将PHP代码/文件添加到HTML(.html)文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆