首頁 > 後端開發 > php教程 > apache配置虛擬主機

apache配置虛擬主機

PHP中文网
發布: 2016-08-08 09:27:06
原創
880 人瀏覽過

apache設定虛擬主機

#在httpd.conf 开启 Virtual hosts Include conf/extra/httpd-vhosts.conf
#然后在httpd-vhosts.conf 里面配置
#根据ip来匹配
# <VirtualHost 127.0.0.1:80>
#    DocumentRoot "E:/htdocs"
#    DirectoryIndex index.html index.htm index.php
#    <Directory E:/htdocs>
#      Options FollowSymLinks
#      AllowOverride None
#      Order allow,deny
#      Allow from all
#    </Directory>
# </VirtualHost>
 
#根据端口号来匹配
# <VirtualHost 127.0.0.1:82>
#    DocumentRoot "E:/htdocs"
#    DirectoryIndex index.html index.htm index.php
#    <Directory E:/htdocs>
#      Options FollowSymLinks
#      AllowOverride None
#      Order allow,deny
#      Allow from all
#    </Directory>
# </VirtualHost>
 
#根据主机名匹配
<VirtualHost *:80>
    DocumentRoot "E:/htdocs"
    ServerName localhost
    DirectoryIndex index.html index.htm index.php
    <Directory E:/htdocs>
      Options FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
    </Directory>
</VirtualHost>
 
<VirtualHost *:80>
    DocumentRoot "E:/htdocs/dedecms"
    ServerName dedecms.com
    DirectoryIndex index.html index.htm index.php
    <Directory E:/htdocs>
      Options FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
    </Directory>
</VirtualHost>
 
<VirtualHost *:80>
    DocumentRoot "E:/htdocs/discuz"
    ServerName discuz.com
    DirectoryIndex index.html index.htm index.php
    <Directory E:/htdocs>
      Options FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
    </Directory>
</VirtualHost>
登入後複製
#在window 配置host文件
登入後複製

 以上就是apache配置,虛擬主機的內容,更多相關內容請關注PHP中文網(www.php.cn)!


相關標籤:
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
Gitblog在apache上怎麼配置?
來自於 1970-01-01 08:00:00
0
0
0
配置apache存取svn怎麼操作
來自於 1970-01-01 08:00:00
0
0
0
apache配置rewrite隱藏掉thinkphp的index.php
來自於 1970-01-01 08:00:00
0
0
0
路由器 - 求問nginx+apache 配置
來自於 1970-01-01 08:00:00
0
0
0
配置域名apache
來自於 1970-01-01 08:00:00
0
0
0
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板