Apache多站點配置 這種方法是配置不一樣的地址訪問不一樣的文件夾的配置 1:修改本機的hosts文件,以下: 示例: 127.0.0.1 localhost 127.0.0.1 www.dede.com 127.0.0.1 www.phpcms.com 2: 打開appserv的安裝目錄,找到httpd.conf文件,分別去掉下面兩行文字前面的#號。 #LoadModule vhost_alias_module modules/mod_vhost_alias.so 去掉#意思是啓用apache的虛擬主機功能。 #Include conf/extra/httpd-vhosts.conf 去掉這一行的#意思是從conf/extra/httpd-vhosts.conf這個文件導入虛擬主機配置。 3: 打開extra目錄內的httpd-vhosts.conf文件,什麼都無論,直接在文件底部加入本身要加的虛擬主機的信息。以下面所示。 分別是給出一個管理員郵箱、指出此網站的根目錄、域名、和錯誤日誌存放位置。注意目錄間隔最好用/而不是/ 。 NameVirtualHost *:80 <VirtualHost *:80> ServerName www.phpzend.com DocumentRoot E:/wamp/www/phpzend ServerAlias www.phpzend.com ErrorLog "logs/www.phpzend.com-error.log" CustomLog "logs/www.phpzend.com-access.log" common </VirtualHost> *以上路徑中的斜線左斜右斜均可以。 4. 在httpd.conf中添加相應目錄 #wwww.phpzend.com <Directory "E:/wamp/www/phpzend/"> Options Indexes FollowSymLinks AllowOverride all Order Deny, Allow Allow from all </Directory> 5 將appserv的apache服務重啓,就能夠了,能夠在各網站的根目錄下放一個index.html文件,若是能看到,說明就對了。 第二種:是在同一個ip下面配置不一樣的端口的方法 打開appserv的安裝目錄,找到httpd.conf文件,找到: Listen 80 加入: Listen 80 Listen 1000 Listen 1001 Listen 1002 而後參照虛擬主機的設置方法。不一樣的是: <VirtualHost *:80> 這個後邊的端口號按本身需求更改就成了。 若是 弄完以後 出現403錯誤 那 在httpd.conf裏找到: <Directory /> Options FollowSymLinks ExecCGI Indexes AllowOverride None Order deny,allow Deny from all Satisfy all < /Directory> 更改成 <Directory /> Options FollowSymLinks ExecCGI Indexes AllowOverride None # Order deny,allow # Deny from all # Satisfy all < /Directory>
用多端口配置多站點 配置1:開啓wampserver的虛擬目錄的支持 apache 的httpd.conf中找到Include conf/extra/httpd-vhosts.conf將前面的「;」去掉 配置2:設置多端口監聽 apache 的httpd.conf中 Listen 8080 Listen 8081 Listen 8082 Listen 8083 配置3:在httpd-vhosts.conf文件中添加一組標籤 <VirtualHost *:8081> ServerAdmin wordpress@wordpress.localhost ServerName www.bingphp.com DocumentRoot H:/wamp/www/canphp ServerAlias www.bingphp.com ErrorLog "logs/wordpress.localhost-error.log" CustomLog "logs/wordpress.localhost-access.log" common </VirtualHost> #注意:ServerName的寫法,只需寫此主機的域名或ip地址,localhost或127.0.0.1或具體的域名(www.bingphp.com 已經過hosts文件映射到本機了)
若訪問出現40三、可配置apache的httpd.conf文件
<Directory "H:/wamp/www/myblog">
Options Indexes FollowSymLinks
AllowOverride all
Order deny,allow
Allow from all
</Directory>php