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
(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
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
and
So, my first VirtualHost is
ServerName *
DocumentRoot /lampp/htdocs/guest>
Order deny,allow
Allow from all
, just add them in order
ServerName www .myweb1.com DocumentRoot /lampp/htdocs/myweb1> 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)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.