The most fundamental way to use an intranet is to access a resource using a browser. To make this happen, you must create a web site. A web site starts from a regular folder. When you have installed Internet Information Services, the installation automatically create folder and a web site. The folder is created on the C: drive and named. It has a sub-folder named wwwroot. To access the newly created web site, use one of the above addresses:
The installation creates a file named iisstart.htm and puts it in the C:\inetpub\wwwroot folder. This is the home folder and the iisstart.htm file is the home page. To change the home page, create an HTML document with a content of your choice. Here is an example: <html> <head> <head> <title>Exercise</title> </head> <body> <h3>Private Matters</h3> <p>This is our intranet web site.</p> </body> </html> Save the document as index.htm or index.html or default.htm or default.html and store it in the C:\inetpub\wwwroot folder. When you access the web site, that file would show as the home page. Here is an example: In the same way, you can create additional folders and files to complete your intranet. |
|
|||
|