Apache2 Virtual host implements one server to bind multiple domain names

Source: Internet
Author: User

Configuration of the 1.apache2

First of all, to configure the apache2, if not configured, please refer to my previous blog: Lamp configuration

2. The resolution of the domain name

Resolves a record of www and @ for all domain names to the IP of the cloud server

3. Configuration of the virtual Host 1. Configuring httpd.conf
    • If etc/httpd/conf/httpd.conf is present, configure this httpd.conf
    • If etc/httpd/conf/httpd.conf does not exist, we need to create a new httpd.conf under/etc/apache2, configure this httpd.conf, and then/etc/apache2/ Introduction of httpd.conf in apache2.conf
引入方式: 在apache2.sonf中加入一行   Include httpd.conf

HTTPD.CONF configuration:

<VirtualHost *:80>ServerName www.123.com   #浏览器访问www.123.com的时候DocumentRoot /var/www/123 #123.com的内容目录DirectoryIndex index.html</VirtualHost><VirtualHost *:80>ServerName www.456.com #浏览器访问456.com的时候DocumentRoot /var/www/456 #456.com的内容目录DirectoryIndex index.php </VirtualHost>
2. Restart Apache2
sudo service apache2 restart

Apache2 Virtual host implements one server to bind multiple domain names

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.