2017-03-15 108 views
0

我想用一個域來映射不同的項目。nginx一個域名和多個項目設置別名

mydomain.com.tw =>的/ var/WWW/PROJECT1 /公共
mydomain.com.tw/test =>的/ var/WWW /項目2

mydomain.com.tw/project2/詳細總是直接到mydomain.com.tw項目路線。

PROJECT1 => laravel
項目2 => VUE和使用VUE路由

listen 80; 
listen [::]:80; 

server_name mydomain.dev; 

index index.php index.html index.htm; 
root /var/www/project1/public; 

location/{ 
    try_files $uri $uri/ /index.php$is_args$args; 
} 

location /lottery { 
    alias /var/www/project2/dist; 
    try_files $uri $uri/ @rewrites; 
} 

location @rewrites { 
    rewrite ^(.+)$ /index.html last; 
} 

location ~ \.php$ { 
    try_files $uri /index.php =404; 
    fastcgi_pass php-upstream; 
    fastcgi_index index.php; 
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
    include fastcgi_params; 
} 

location ~ /\.ht { 
    deny all; 
} 
+0

你可以使用一個子呢? (mydomain.dev和project2.mydomain.dev)。 – Lucas

+0

@Lucas不,因爲需要使用相同的本地存儲項目。 –

+0

您是否嘗試過使用其他瀏覽器或清除瀏覽器的DNS緩存?有時這發生在我身上。 – Lucas

回答