从子目录Nginx中的Laravel中删除index.php

时间:2018-04-27 07:05:11

标签: laravel nginx

我试图在同一个域下运行两个代码库,一个静态vue-cli站点和一个Laravel后端api。

静态站点将用于前端,这将查询laravel代码库。我无法从我的laravel网址中删除index.php。

我的文件系统如下;

/var/www/site/frontend/dist/index.html <-- static homepage
                           /another.html <-- another static page
/var/www/site/backend/api/index.php <-- api access

对我的api的请求看起来像

/api <-- laravel landing page, only for debugging
/api/autocomplete/artist/{artistName}
/api/autocomplete/artist/{artistName}/album/{albumTitle}

我认为我很接近但不完全在那里,我所拥有的最好的是l Laravel登陆页面,但每当我添加路由参数时,我得到404,下面是我的配置;

server {
    listen 80 default_server;

    root /var/www/site/frontend/dist;

    index index.html index.htm index.php;

    server_name _;

    # Make index.php in /api url unnecessary
    location /api {
      alias /var/www/site/backend/api;

      try_files $uri $uri/ /index.php?r=$is_args$args;

     location ~ \.php$ {
         include snippets/fastcgi-php.conf;
         fastcgi_param SCRIPT_FILENAME $request_filename;
         fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
     }

    }

    location ~ \.php$ {
       include snippets/fastcgi-php.conf;
       fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
    }
}

1 个答案:

答案 0 :(得分:0)

您需要使用^~修饰符,否则您的其他location ~ \.php$块优先于错误的文档根目录。有关详细信息,请参阅this document

您不需要使用alias,因为文档根目录的最后一部分与位置匹配 - 这可以简化aliastry_files issues一起使用时的内容

try_files语句的最后一个元素应该是一个URI,它需要包含位置前缀。有关详情,请参阅this document

例如:

location ^~ /api {
    root /var/www/site/backend;
    try_files $uri $uri/ /api/index.php?r=$is_args$args;

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_param SCRIPT_FILENAME $request_filename;
        fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
    }
}