程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> apache配置虛擬主機,apache虛擬主機

apache配置虛擬主機,apache虛擬主機

編輯:關於PHP編程

apache配置虛擬主機,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文件

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved