nginx一个域名配置多个项目问题

请教个问,下面nginx配置一个IP:192.168.88.118后面跟blog1、blog2 Laravel项目文件夹,但是访问的时候一定要是 http://192.168.88.118/blog1/,如果是http://192.168.88.118/blog1访问就失败,改怎么配置呢?

server
{
    listen 80;
    server_name 192.168.88.118;
    index index.php index.html index.htm;
    #root  /data/wwwroot/blog1/public;

    location ^~ /blog1/ {
        alias /data/wwwroot/blog1/public;
        rewrite /blog1/(.*)$ /blog1/index.php?=$1 last; break;
        #if (-d $request_filename) {
        #    rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
        #}
        location ~ \.php$ {   
            #fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param SCRIPT_FILENAME /data/wwwroot/blog1/public/index.php; 
            include fastcgi_params;
        }
    }

    location ^~ /blog2/ {
        alias /data/wwwroot/blog2/public;
        rewrite /blog2/(.*)$ /blog2/index.php?=$1 last; break;
        #if (-d $request_filename) {
        #    rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
        #}
        location ~ \.php$ {   
            #fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param SCRIPT_FILENAME /data/wwwroot/blog2/public/index.php; 
            include fastcgi_params;
        }
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      120s;
    }

    location ~ /\. {
        return 404;
    }

    location ~ .*\.(js|css)?$
    {
        expires      120s;
    }
}
《L05 电商实战》
从零开发一个电商项目,功能包括电商后台、商品 & SKU 管理、购物车、订单管理、支付宝支付、微信支付、订单退款流程、优惠券等
《L04 微信小程序从零到发布》
从小程序个人账户申请开始,带你一步步进行开发一个微信小程序,直到提交微信控制台上线发布。
讨论数量: 3

^~ /blog1/ 把最后那一杠 去掉

3年前 评论
颠倒的玉石

这不就是重定向么

3年前 评论

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!