正在删除' index.html'来自我重定向的PHP网站网址

时间:2016-05-18 02:14:58

标签: php .htaccess heroku deployment routing

我正在使用Heroku来部署我的网站,并且通过包含一个简单路由到我的index.html的index.php文件,欺骗它认为我的静态网站是动态网站。我已经这样做了,只是简单地在Heroku上托管我的网站,Heroku显然通常不会托管静态网站,只是动态网站(据我所知)。

问题:如何删除网站末尾的index.html: www.roberttassy.co/index.html ?在我的代码中,我有一个index.php文件有代码块:

<?php header( 'Location: /index.html' ) ; ?>

成功重新路由到我的index.html文件,但我不想要&#34; index.html&#34;在地址栏中输入我的网址。我希望它只是阅读: www.roberttassy.co 。有什么建议吗?

2 个答案:

答案 0 :(得分:2)

试试这个

<?php include 'index.html';?>

答案 1 :(得分:1)

尝试使用它。

<?php require("index.html"); ?>而不是标题。