找不到NGINX API路由404

时间:2018-09-20 14:55:26

标签: nginx routes

NGINX没有看到路线,给出了404 NOT FOUND。 该网站位于/usr/share/nginx/html/website文件夹中,可以通过http://localhost访问。

我在应用程序中访问的路由为localhost/api/public/languages

这是我的NGINX:

root /usr/share/nginx/html/website;
index index.php index.html index.htm;

location / {

        try_files $uri $uri/ /index.php?$query_string;
   }

   location ~ \.php$ {

        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;

        error_log /var/log/php-fpm/www-error.log;

   }

如何访问路线?

0 个答案:

没有答案