Apache添加多个网站

Apache添加多个网站
1. 修改 wamp/bin/apache/apache2.4.9/conf/httpd.conf 配置文件

# Virtual hosts
Include conf/extra/httpd-vhosts.conf # 去掉#号

2. wamp/bin/apache/apache2.4.9/conf/extra/httpd-vhosts.conf

<VirtualHost *:端口号>
  ServerAdmin webmaster@你的域名 # 这行不是必要的
  DocumentRoot "网站根目录"
  ServerName 你的域名
  ServerAlias www.你的域名.com
  ErrorLog "logs/你的域名.com-error.log"
  CustomLog "logs/你的域名.com-access.log" common
  <Directory "网站根目录">
    Options Indexes FollowSymLinks
    AllowOverride all
    Require all granted
  </Directory>
</VirtualHost>

3. 配置host文件(文件位于:C:\Windows\System32\drivers\etc\)。

4. 重启WampServer。

Apache添加多个网站只需要重复2~4步。

评论
:broken_heart: :confounded: :flushed: :frowning: :grinning: :heart: :kissing_heart: :mask: :pensive: :rage: :relaxed: :scream: :smile: :smirk: :sob: :stuck_out_tongue_closed_eyes: :stuck_out_tongue_winking_eye: :wink: