[Answer]-Does heroku support static files now?

1👍

Yeah, they have a document up on it now: https://devcenter.heroku.com/articles/django-assets

0👍

Rename your index.html to home.html.
Create an index.php file with the following code:

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

Now go to your app folder in CMD (or Bash), and commit your code to Heroku using the following:

git add .
git commit -m 'Change this to a meaningful description'
git push heroku master

Source

👤spamup

Leave a comment