在Heroku架設靜態網站
想在Heroku架設一個靜態網站? 為了這件事特地寫個應用實在麻煩,最簡單的做法是將index.html更名為_index.html(或其他類似的名字),並新增一個index.php內容如下:
1 2 3 | <?php include_once("_index.html"); ?> |
部署步驟如下: 1.為網站建立一個專案:
1 2 | mkdir heroku cd heroku |
2.建立index.php,並指向靜態網站首頁。 3.推送到Heroku上:
1 2 3 4 5 | git init git add . heroku create <appName> git commit -m "initial commit" git push heroku master |
4.打開網站確認:
1 | heroku open
|
部署完成囉! -- 題外話,有試著偷渡把index.html改成index.jsp,想當然是失敗了......push時報錯:! Push rejected, no Cedar-supported app detected