打開conf/httpd.conf
image.png
一、修改ServerName
ServerName localhost
image.png
二瘩将、修改DocumentRoot
DocumentRoot "D:/Apache24/htdocs"
<Directory "D:/Apache24/htdocs">
image.png
重啟Apache后
image.png
瀏覽器打開 localhost
image.png
三、增加其他兩個網(wǎng)站
在D:/Apache24目錄下創(chuàng)建兩個目錄myweb1凹耙、myweb2
分別增加index.html
image.png
內(nèi)容
image.png
image.png
增加如下代碼
Listen 81
<VirtualHost *:81>
ServerName 127.0.0.1
DocumentRoot "D:/Apache24/myweb1"
<Directory "D:/Apache24/myweb1">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
</VirtualHost>
Listen 82
<VirtualHost *:82>
ServerName 127.0.0.1
DocumentRoot "D:/Apache24/myweb2"
<Directory "D:/Apache24/myweb2">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
</VirtualHost>
image.png
重啟Apache后
image.png
打開網(wǎng)址 localhost:81和localhost:82
image.png
image.png