I'm building web app with an angular.js/django frontend backend and I was wondering if it's possible to configure AWS to return a static html file for all url's except for my api calls. For example:
http://somewebsite.com/(non-api path)/ <- returns static.html
http://somewebsite.com/api/(path)/ <- returns the response from the api
The ultimate goal would be to allow static.html to be completely separate from the Apache server on EC2 running the django api and instead allow it to be uploaded to the S3 instance along with my other static files.