I have a html file, when I click it, browser window pops up with file:///c:/myhtml.html. How can I run this file with http protocol scheme, so that the url would be like http://localhost/myhtml?
I don't want to setup a heavyweight webserver. Is there any nice and neat solution for this?
Why I want to do this is, to test my html file under http protocol instead of file:/// protocol on which browsers restrict some functionality.
python -m SimpleHTTPServer 8000