Detailed explanation of how to configure secondary domain name on Apache server under Linux environment

Detailed explanation of how to configure secondary domain name on Apache server under Linux environment

This article describes how to configure a secondary domain name on an Apache server in a Linux environment. Share with you for your reference, the details are as follows:

(Take the domain name www.csdn.net as an example, now you need to configure a secondary domain name blog.csdn.net to point to the host address)

First, make sure to enable the mod_rewrite module in the Apache configuration file httpd.conf:

Here is a brief introduction to this module:


Next, we need to log in to the domain name management backend of the purchased domain name operator and click 'Domain Name Resolution':


Manually add or quickly add the following two default resolutions with one click. Domain names such as www.csdn.net and csdn.net can access the host address.

Add a secondary domain name resolution that needs to be configured:

Then add the following domain name configuration at the end of the Apache configuration file httpd.conf:

<VirtualHost *:80>
  ServerAdmin [email protected]
  DocumentRoot /usr/local/apache/htdocs
  ServerName www.csdn.net
  ServerAlias ​​www.csdn.net csdn.net
  DirectoryIndex index.php index.html index.htm  
</VirtualHost>
<VirtualHost *:80>
  ServerAdmin [email protected]
  DocumentRoot /usr/local/apache/htdocs/blog
  ServerName blog.csdn.net
  ServerAlias ​​blog.csdn.net
  DirectoryIndex index.php index.html index.htm  
</VirtualHost>

Restart Apache, and then the secondary domain name such as blog.csdn.net can be accessed

I hope this article will help you configure your Linux server.

You may also be interested in:
  • Apache secondary domain name resolution (windows and linux)
  • Linux Apache wildcard domain name resolution and DNS related
  • Detailed explanation of how to configure multiple domain names in Nginx on Alibaba Cloud Linux system
  • Implementation of virtual domain name under Linux (1)
  • Implementation of virtual domain name under Linux (2)
  • Implementation of virtual domain name under Linux (3)
  • Springboot+nginx+https+linux to achieve load balancing and domain name access simple test
  • How to configure virtual host under linux apache
  • Sharing of Apache server configuration and management methods under CentOS (Linux)
  • Detailed notes on installation and configuration of Apache, MySQL, and PHP under Linux
  • PHP+MYSQL+APACHE configuration process under Linux (excerpt)

<<:  Detailed explanation of the reasons and optimizations for the large offset affecting performance during MySQL query

>>:  How to use axios request in Vue project

Recommend

Keepalived+Nginx+Tomcat sample code to implement high-availability Web cluster

Keepalived+Nginx+Tomcat to achieve high availabil...

How to redirect to https through nginx load balancing

Copy the certificate and key on the web scp -rp -...

Example of how to create and run multiple MySQL containers in Docker

1. Use the mysql/mysql-server:latest image to qui...

Shell script to monitor MySQL master-slave status

Share a Shell script under Linux to monitor the m...

Nginx server adds Systemd custom service process analysis

1. Take nginx as an example Nginx installed using...

jQuery achieves the shutter effect (using li positioning)

This article shares the specific code of jQuery t...

Detailed explanation of MySQL binlog usage

binlog is a binary log file that records all DML ...

Hexadecimal color codes (full)

Red and pink, and their hexadecimal codes. #99003...

CSS3 timeline animation

Achieve results html <h2>CSS3 Timeline</...

How to find slow SQL statements in MySQL

How to find slow SQL statements in MySQL? This ma...

JavaScript to achieve elastic navigation effect

This article shares the specific code for JavaScr...

Full HTML of the upload form with image preview

The upload form with image preview function, the ...

Nginx installation error solution

1. Unzip nginx-1.8.1.tar.gz 2. Unzip fastdfs-ngin...