APACHE同一IP配置多個域名,做web開發的應該非常熟悉了,不過還是總結一下防止以後搞忘了!
下面直接說該如何操作吧:
1.在windows2003下安裝APACHE配置虛擬目錄和UNIN下基本是一樣的,就是修改httpd.conf文件(Apache2\conf\httpd.conf).
2.打開http.conf文件,在其最下發輸入
NameVirtualHost 218.17.19.19 #服務器IP地址 <VirtualHost 218.17.19.19> #域名所指向的IP DocumentRoot "E:/webroot/phpernote" #域名所指向的目錄,注意""不可少 ServerName www.phpernote.com #網站域名 DirectoryIndex index.php index.html default.php index.html.var </VirtualHost> <VirtualHost 218.17.19.19> #第二個網站域名所指向的IP DocumentRoot "E:/webroot/example" #www.example.com要指向的目錄 ServerName www.example.com DirectoryIndex index.php index.htm index.html default.php index.html.var </VirtualHost>
更多個虛擬主機(域名配置)依次類推。