Home >php教程 >PHP开发 >Apache VirtualHost configuration

Apache VirtualHost configuration

黄舟
黄舟Original
2016-12-21 11:06:101691browse

Take the lampp environment as an example. Other environments only have different paths to the configuration files.

First, remove the comment on the virtual path in lampp/etc/httpd.conf (this is the general configuration file of Apache).

#Include etc/extra/httpd-vhosts.conf

Enable the httpd-vhosts.conf file, or write the configuration directly in httpd.conf, but it is not recommended.

Relevant configurations include: Listen NameVirtualHost

1. Listen The port to be listened to, multiple ports, multiple Listens must be written; otherwise, when Apache starts, the corresponding socket will not be started.

For example

              Listen 80

              Listen 8080

2. NameVirtualHost Without this, the tag has no effect.

(Thanks to okiwill for the correction. This specifically refers to access based on domain name. If access is based on IP, the VirtualHost of the first specified IP shall prevail. Each IP can be specified separately)

One NameVirtualHost can be used with multiple , each must have its own NameVirtualHost (I guess)

NameVirutalHost *:80

Specify the IP and port of this host. If there are multiple IPs on the server, you can specify a certain Which host is a certain port of the IP?

 (The new version of Apache has removed the NameVirtualHost configuration, because it is really useless, the parameters have been specified in VirtualHost)

3 The most critical VirtualHost

Important: When Apache receives a request, it will first default to the first one VirtualHost, and then find a matching one. If there is no matching one, the first VirtualHost will take effect.

Therefore, in httpd.conf, the permissions of (this is the default configuration for all directories)

and are both denied from all. as the default.

So, my first VirtualHost is

ServerName *

DocumentRoot

Order deny,allow

Allow from all

After

, just add them in order

ServerName www .myweb1.com

DocumentRoot

Order deny,allow

Allow from all

The above is the content of Apache VirtualHost configuration. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


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