服務器的多域名配置php
1. 經常使用的WEB服務器有Apache和nginx,小編偏向使用nginx。平常開發機器使用的是windows,本地測試安裝的wamp,會用的Apache;生成環境是使用linux,一鍵安裝lnmp,因此使用了nginx。css
2. Nginx是一個高性能、輕量級的HTTP和反向代理服務器,也是一個IMAP/POP3/SMTP服務器。html
Apache是一款老牌的Web服務器軟件。它能夠運行在幾乎全部普遍使用的計算機平臺上,因爲其跨平臺和安全性被普遍使用,是最流行的Web服務器端軟件之一。linux
3. 首先要把域名指定到服務器的IP上nginx
4. Nginx的域名配置apache
Nginx的配置文件是/usr/local/nginx/conf/nginx.conf,文件中windows
include vhost/*.conf;安全
能夠把域名配置文件協助vhost文件下,爲了區分開來,每一個域名建立一個.conf文件,如mydomain.conf配置文件以下服務器
serverdom
{
listen 80 ;
server_name www.mydomain.com;
index index.html;
root /data/mydomain/wwwroot/default;
#error_page 404 /404.html;
include enable-php.conf;
location /nginx_status
{
stub_status on;
access_log off;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*.(js|css)?$
{
expires 12h;
}
location ~ /.
{
deny all;
}
access_log /data/wwwlogs/access.log ;
}
配置好監聽端口80,server_name,index,root,include enable-php.conf這是兼容php
多個域名配置多個conf文件便可。而後測試一下配置文件是否寫正確
nginx –t
沒問題了就能夠重啓
/etc/init.d/nginx restart
5. Apache 配置
Apache配置文件在D:wamp64binapacheapache2.4.18confextrahttpd-vhosts.conf
配置文件裏面有多個VirtualHost,每一個VirtualHost對應一個域名,多個域名配置多個便可
<VirtualHost *:80>
ServerName mydomain.com
DocumentRoot D:/wamp64/www/mydomain/public
<Directory 「D:/wamp64/www/mydomain/public/」>
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
6. 總之,服務器的多域名配置就這麼簡單,若有遺漏,請多指正。
wxgzh:ludong86