Have created site using html and javascript,how to publish it internally using webserver or so.Need steps?

link|improve this question
Do you want to publish it on the internet or the intranet? – Gumbo Sep 28 '09 at 11:06
feedback

migrated from stackoverflow.com Sep 28 '09 at 11:17

This question came from our site for professional and enthusiast programmers.

4 Answers

  1. Download XAMPP for your chosen platform.
  2. Copy your files to the htdocs directory.
  3. Start the Apache server.
link|improve this answer
feedback

You should install a web server first (you may want to try Apache which is available for most systems).

After installing the web server you must copy all appropriate HTML / javascript files to the Webserver root (this default publishing directory).

After that, point to your address (localhost or 127.0.0.1 if this is your own computer).

link|improve this answer
feedback

I assume you are using Windows, which contains a limited version of IIS. The easiest way is arguably to use this. Detailed instructions here: http://www.w3schools.com/html/html%5Fwebserver.asp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown