我已经全天搜索了一个在HTML文件中执行PHP文件的解决方案。
我使用基于PHP的CMS。此CMS使用设计模板系统,其中Design必须位于index.htm文件中。将此文件重命名为index.php时 - 它不会运行(测试)。
我正在设计一个新的Clanpage,并希望插入一个" serverviewer"。
这个是在PHP文件中并执行此操作:
我用它来调用php文件:
<div style="width: 280px; height 90px; float: left;margin-right: 10px; margin-bottom: 15px;" >
<?php include("http://www.this-is-war.com/tiw/include/designs/TiWlog/sv/sv_01.php"); ?>
</div>
但遗憾的是,HTML文件中的php代码未被解析,我没有得到Serverviewer。
如果不将文件重命名为.php
扩展名,我该怎么做才能在HTML文件中执行PHP语句?
答案 0 :(得分:1)
将此行添加到apache conf文件或.htaccess文件中,以便php可以执行html文件
AddType application/x-httpd-php .html
答案 1 :(得分:0)
一个简单的解决方案是使用iframe
<div style="width: 280px; height 90px; float: left;margin-right: 10px; margin-bottom: 15px;" >
<iframe src="http://www.this-is-war.com/tiw/include/designs/TiWlog/sv/sv_01.php"></iframe>
</div>