windows系統apache的多域名配置


1、httpd.conf

找到#Include conf/extra/httpd-vhosts.conf,將前面的#也就是注釋去掉

2.httpd.conf

找到(修改Directory路徑為你所有站點根目錄,我本地是d:\wwwroot

修改 AllowOverride None->AllowOverride All
<Directory “D:/wwwroot”>
#
# Possible values for the Options directive are “None”, “All”,
# or any combination of:
#Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that “MultiViews” must be named *explicitly* — “Options All”
# doesn’t give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be “All”, “None”, or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
AllowOverride All

#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all

</Directory>

3、去extra目錄下找到httpd-vhosts.conf

<VirtualHost *:80>
DocumentRoot d:\Apache\htdocs
ServerAdmin  xxx@gmail.com
ServerName localhost
</VirtualHost>
//以上是設置默認站點
<VirtualHost *:80>
DocumentRoot D:\wwwroot\www.XXX.com//(www.xxx.com是我存放系統的文件夾名稱)
ServerName www.XXXX.com
</VirtualHost>

//以上設置你自己的站點,具體日志位置的設置可以參考示例配置

4、修改c盤windows->system32->driver->etc->hosts文件

添加:127.0.0.1 www.XXX.com

重啟Apache,OK!


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM