Laravel API 在 Nginx 上路由获取 404
Laravel API route get 404 on Nginx
我有一个 Laravel 项目。它适用于 Mac os 和 nginx。
我最近安装了一个 CentOs 8。我在上面安装了 Nginx 并添加了以下配置:
server {
listen 8001;
server_name _;
root /usr/share/nginx/html/reservation_laravel/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php-fpm/www.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
web.php 内的所有路由工作正常,但 API 路由不工作!
相同的配置正在 Ubuntu 服务器上运行!
当你在 api.php 上写作时,在你的 url 上添加 api 喜欢
'/get-list'
那你就叫它
/api/get-list
我不确定您是否有重写问题。查看 Laravel 的安装文档。有一个关于重写配置的部分可能会给你一些见解:
我有一个 Laravel 项目。它适用于 Mac os 和 nginx。 我最近安装了一个 CentOs 8。我在上面安装了 Nginx 并添加了以下配置:
server {
listen 8001;
server_name _;
root /usr/share/nginx/html/reservation_laravel/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php-fpm/www.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
web.php 内的所有路由工作正常,但 API 路由不工作! 相同的配置正在 Ubuntu 服务器上运行!
当你在 api.php 上写作时,在你的 url 上添加 api 喜欢
'/get-list'
那你就叫它
/api/get-list
我不确定您是否有重写问题。查看 Laravel 的安装文档。有一个关于重写配置的部分可能会给你一些见解: