用finecms設置了多網站
主站綁定域名:1.1.1.1:803
新建一個網站繼承主站,綁定域名為:1.1.1.1:804
問題是: 無論訪問803還是804,前台顯示的內容都是主站的。 試問如何解決?
GA內網IP緊張,只能用端口
nginx 不同端口轉發 參考, 利用nginx 這類的代理軟件就可以
server {
listen 80;
server_name www.google;
location / {
root /www;
index index.html index.htm;
}
}
server {
listen 8080;
server_name www.google;
location / {
root /www/new;
index index.html index.htm index.php;
#autoindex on;
#autoindex_exact_size off;
#autoindex_localtime on;
}