免費架網站空間 Heroku 上傳教學 (PHP 為例)
先去官網註冊帳號,跟下載heroku,這部分就自己弄吧,我就跳過了。
假設你現在下載好也註冊好,手邊也有做好的網頁想要佈署到網路上,那你就可以開始服用這篇文章了。
原本我的檔案叫index.html,不過這邊要新增一個檔案index.php,裡面只需要包含
<?php include("index.html") ?>
這一行就好,但理論上不想弄這一步的話就把index.html改成index.php應該就可以了,這部分你們想測可以測一下
然後新增一個composer.json檔,內容空白就好
heroku 上傳的方式它提供三種,我是選擇用heroku git,開啟你的終端機(沒下載過git的人也需要下載一下git)
先cd 到你網頁的檔案目錄
git init
git add .
git commit -m "any description you like"
heroku create any-name-you-like//如果你是第一次創這個,選個自己喜歡的名字,不選的話它就會隨便配給你,之後如果只是更新檔案就可以省略這步
git push heroku master
heroku open //打開你上傳的網頁
假設你現在下載好也註冊好,手邊也有做好的網頁想要佈署到網路上,那你就可以開始服用這篇文章了。
原本我的檔案叫index.html,不過這邊要新增一個檔案index.php,裡面只需要包含
<?php include("index.html") ?>
這一行就好,但理論上不想弄這一步的話就把index.html改成index.php應該就可以了,這部分你們想測可以測一下
然後新增一個composer.json檔,內容空白就好
heroku 上傳的方式它提供三種,我是選擇用heroku git,開啟你的終端機(沒下載過git的人也需要下載一下git)
先cd 到你網頁的檔案目錄
git init
git add .
git commit -m "any description you like"
heroku create any-name-you-like//如果你是第一次創這個,選個自己喜歡的名字,不選的話它就會隨便配給你,之後如果只是更新檔案就可以省略這步
git push heroku master
heroku open //打開你上傳的網頁
留言
張貼留言