1. 程式人生 > >Centos 6.6 在LAMP環境 Apache配置vhost

Centos 6.6 在LAMP環境 Apache配置vhost

1、開啟apache的配置檔案(httpd.conf),一般是在/etc/httpd/conf/httpd.conf

a) 開啟LoadModule vhost_alias_module modules/mod_vhost_alias.so (開啟方法,刪除該句前的‘#’號)

b) 在Include conf.d/*.conf 下寫入Include conf/extra/httpd-vhosts.conf (這句話是加入conf下的extra資料夾下的httpd-vhosts.conf檔案,所以這個路徑可以放在其它目錄,比如說conf.d目錄)

c) 將NameVirtualHost *:80 設定成這樣

上面的所有都可以在vi中命令模式下使用‘/’加你要搜尋的單詞,如 /vhost,注意區分大小寫

2、在conf目錄下新建一個extra目錄(使用mkdir extra命令建立,extra就是上面配置路徑中所使用到的路徑)

a) 在extra目錄下新建httpd-vhosts.conf(使用vi httpd-vhosts.conf就能建立)

b) 在下面輸入以下程式碼:

<VirtualHost *:80>

     ServerName www.xx1.com   這裡使用xx1的域名作為例項

     DocumentRoot "/var/www/html/xx1"  這裡是域名所指的資料夾

    <Directory "/var/www/html/xx1">  這裡是域名所指的資料夾

        Options Indexes FollowSymLinks ExecCGI Includes

        AllowOverride All

        Order allow,deny

        Allow from all

    </Directory>

</VirtualHost>

<VirtualHost *:80>

     ServerName www.xx2.com   這裡使用xx2的域名作為例項

     DocumentRoot "/var/www/html/xx2"  這裡是域名所指的資料夾

    <Directory "/var/www/html/xx2

">  這裡是域名所指的資料夾

        Options Indexes FollowSymLinks ExecCGI Includes

        AllowOverride All

        Order allow,deny

        Allow from all

    </Directory>

</VirtualHost>

更多......

3、重啟伺服器:(常用方式:service httpd restart   或者  /etc/init.d/httpd restart