阅读858 返回首页    go 阿里云 go 技术社区[云栖]


在Apache设置虚拟机

在Apache设置虚拟机


1、在httpd.conf里面讲一下语句前的#去掉
# Virtual hosts
Include conf/extra/httpd-vhosts.conf


2、在httpd.conf里面添加端口监听
Listen 12345


3、在httpd-vhosts.conf增加虚拟机配置
<VirtualHost 127.0.0.1:12345>
DocumentRoot "D:\codes\php\mxt"
ServerName *:12345
    <Directory "D:\codes\php\mxt">
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>


4、如果虚拟机配置ServerName ,必须在系统hosts文件中添加指定,如:127.0.0.1


hl95test。
 <VirtualHost *:8088>
     ServerName hl95test
     DocumentRoot D:/codes/php/mxt
     <Directory D:/codes/php/mxt>
         DirectoryIndex index.php
         AllowOverride All
         Order allow,deny
         Allow from all
     </Directory>
 </VirtualHost>


注:hosts文件路径C:\Windows\System32\drivers\etc

最后更新:2017-04-03 12:56:21

  上一篇:go 天气查询带折线图
  下一篇:go Microsoft Visual Studio与Firefly 一直提示加载项目,更新源码状态问题