导出 https://www.php.cn/php-weizijiaocheng-391228.html
转载地址 https://blog.csdn.net/wanchaopeng/article/details/84580076
server {
listen 8081;
server_name localhost;
access_log /var/log/nginx/lar.access.log combined;
location / {
root /usr/local/nginx/html/laravel-gymie/public;
index index.php index.htm index.html;
#autoindex on;
#autoindex_exact_size off;
#autoindex_localtime on;
if (!-e $request_filename) { #添加当前与以下模块
rewrite ^/(.*)$ /index.php?s=$1 last;
break;
}
}
location ~ \.php?.*$ {
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
root /usr/local/nginx/html/laravel-gymie/public;
fastcgi_pass 127.0.0.1:9001;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
本文详细介绍了Nginx服务器的配置方法,包括监听端口、服务器名称设置、访问日志记录、根目录指定、默认索引文件设定以及重写规则等关键配置。此外,还深入解析了PHP请求处理配置,如fastcgi参数传递、脚本文件名设定等,为开发者提供了全面的Nginx配置指南。

2533

被折叠的 条评论
为什么被折叠?



