-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nginx 文档配置错误。 #503
Comments
区别是什么没有看出来 |
使用 / 需要配置好 nginx 以支持url pathinfo模式 如: |
PHP8 Yaf3.3.3 按照官网配置 导致Nginx死循环:
解决: #for nginx
唯一的变化,是 多出1个 ?问号 |
?意思是query_string, /意思是PATH_INFO |
关键地方是 调用 fastcgi 是缺少 PATH_INFO 这两行 fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
if (!-e $request_filename) {
rewrite ^/(.*) /index.php?$1 last;
}
# 关键点:
location ~ ^/index\.php(/|$) {
# fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000;
# fastcgi_pass /var/run/php-fpm.sock ;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_hide_header X-Powered-By;
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
文档上有错
错误的写法:
if (!-e $request_filename) {
rewrite ^/(.) /index.php/$1 last;
}
正确的写法
if (!-e $request_filename) {
rewrite ^/(.) /index.php?$1 last;
}
The text was updated successfully, but these errors were encountered: