Apache Web server is open source Web server, we see the page is uploaded to the server and then presented to the user.
In development, install the Apache Web server on your own computer, your computer will become a server, profile, access your IP address, you can view your shared pages.
These days I have installed the Apache Web server for my computer in the process encountered a variety of pits, the following to say the installation process and the method to solve the pit. The installation process I was presented in the form of graphs, more intuitive and clear.
Apache Web Server installation Steps1. Open the installation package and select "Next". Then accept the authorization and select "Next".
2, "Select the installation Path": In the Select Path dialog box select the installation path, click "Next". Choose install shortcut by desktop, select "Next", and then click "Install" to start the installation.
PrecautionsNote: The installation process pops up the file box, is lets you choose the default Browsing tool, the browsing tool refers to the Windows browser, namely Explorer.exe default, can open. My habit is to turn off directly, because each click Opens, will pop up the error message the installation process will also pop up such boxes, prompting for the administrator mailbox and the Mailbox SMTP server window, can be filled in. Just click Next to do it without affecting the installation
The final step, after the installation succeeds, a green icon appears in the bottom right corner of the screen
Problems encountered after installation
question 1, the icon is orange The cause of the problem: the computer's 80 port is occupied, causing the Wampservier local environment can no longer use 80 port, Workaround: Modify Wampsarvicer Port 1, locate the Wampservicer installation folder, install the following path to find Httpd.con F's configuration file
2, open the file with Notepad or editor, ctrl+f find only one such character in "Listen80" file, change it to "listen8080" after the two digits can be changed and saved
3, restart the Wampservier service, and then enter "127.0.0.1:8080" or http://localhost:8080/in the Address bar, You must add the port name you changed You can open the local environment website.
question Two, if you add the name of the port changed, or not displayed, you can look at the following article
How to use localhost local site will help
https://jingyan.baidu.com/article/60ccbceb60e42c64cbb19710.html
Apache Web Server installation steps and pits encountered