Home  >  Article  >  Backend Development  >  WebServer installation call

WebServer installation call

WBOY
WBOYOriginal
2016-08-08 09:31:52937browse

Forbidden problem: You don't have permission to acess/on this server.

The reason for this problem is that the default configuration in Apache's http.conf is:

# onlineoffline tag - don't remove

Order Deny,Allow

Deny from all

Allow from 127.0.0.1

1

2

3

4

Only allow access to 127.0.0.1, click the wampserver icon, and then click Put online. The above default configuration in http.conf is automatically modified to

# onlineoffline tag - Don't remove

Order Allow,Deny

Allow from all

1

2

3

Now localhost can be accessed.

The above introduces the WebServer installation call, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn