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;
}
如何访问路线?