一、打開文件 C:\Windows\System32\drivers\etc\hosts,在文件末尾加上下面代碼:apache
127.0.0.1 www.wangdongxue.com瀏覽器
二、打開Apache的配置文件 httpd.conf (應該在Apache目錄下的 conf 文件夾裏),並在末尾加上以下代碼:ide
<virtualHost 127.0.0.1:80>
DocumentRoot "F:\Apache24\htdocs"
ServerName www.wangdongxue.com
</virtualHost>
三、重啓Apache,打開瀏覽器輸入 www.wangdongxue.com:80,大功告成。ui
apache默認不能訪問其餘文件
能夠在配置文件中找到
#<Directory />
# AllowOverride none
# Require all denied
#</Directory>
將這段代碼註釋起來io
將如下兩段代碼寫入其下方 就ok
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
</Directory>配置
<Directory />
Options Indexes FollowSymLinks ExecCGI
AllowOverride None
</Directory>配置文件