如何在没有htaccess的情况下将php包含在.html文件中

时间:2011-02-01 00:25:28

标签: php html .htaccess yahoo

我正在更新我的网站以显示最近的博文。我最初将我的主页改为index.php,但后来我的雅虎购物车脚本无法正常工作。我做了一些研究,我发现的唯一答案是将这两行放在我的.htaccess文件中: AddType application / x-httpd-php htm html php AddHandler application / x-httpd-php .htm .html

但雅虎小企业不会让你使用htacess。任何建议???

3 个答案:

答案 0 :(得分:2)

如果您必须坚持使用index.html,请使用iframe将博客文章包含在index.hml中。

您使用雅虎购物车脚本遇到什么错误?

我很确定你可以通过用index.php替换对index.html的任何引用来修复它,甚至更好http://your-webpage-domain.com/your_directory/

另外请确保您使用的是php脚本,并删除了index.html文件。

答案 1 :(得分:0)

也许你可以建立另一个php页面并将其包含在iframe中吗?

答案 2 :(得分:0)

再次将index.html重命名为index.php并制作类似

的表单
<?php
echo '

<form method="post" action="http://order.store.yahoo.net/cgi-bin/wg-order?yhst-12345678901234+10001">
Description: Mercedes<br>
Price: 1,000<br>
<input type="submit" value="Order">
</form>

';
?>