我正在使用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 。有什么建议吗?
答案 0 :(得分:2)
试试这个
<?php include 'index.html';?>
答案 1 :(得分:1)
尝试使用它。
<?php require("index.html"); ?>
而不是标题。