我正在使用 nginx 作为我的网络服务器。
Case1:learning.test/-------> 重定向到我的 Laravel 应用程序
Case2:learning.test/whatever/------->也重定向到我的应用程序
Case3:learning.test/test/------->重定向到我的另一个 Laravel 项目
我的 Nginx 配置文件是:
server {
listen 80;
#listen [::]:80;
client_max_body_size 32M;
fastcgi_buffers 128 2048k;
fastcgi_buffer_size 2048k;
index index.php index.html;
root /home/paul/personal/NewLearningProject/public;
server_name learning.test;
location ^~ /test {
root /home/paul/MazeGeek/Laravel8;
index index.php;
try_files $uri $uri/ /blog/index.php;
location ~ \.php$ {
try_files $uri =404;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
}
location ~ /\.ht {
deny all;
}
}
我在 Case2 和 Case3 中都遇到了 (NGINX 404 Not Found) 错误