TAGS:

Hosting  Heroku  Deploy 

How To Deploy A Regular HTML Website On Heroku.

The Heroku is one of the most pupular PAAS program as a service, and used for server side application so it supposes that you have a server side programming language such as php, ruby, java and so on.

So, For non server side application, we have a problem to deploy on heroku, but you can overcome it.

First, Change your index.html to be home.html.

Second, Create a new file index.php and type:

<?php include_once("home.html"); ?>

And then, Deploy you site simply.

Now, Take a look to this tutorial video.