1. 程式人生 > >區域網配置本地域名

區域網配置本地域名

 # Virtual Hosts
#
<VirtualHost *:8888>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require all granted
Allow from all
  </Directory>
</VirtualHost>