博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx 开启 path_info功能
阅读量:5139 次
发布时间:2019-06-13

本文共 1845 字,大约阅读时间需要 6 分钟。

server {        listen       80;        server_name  localhost;                #charset koi8-r;        #access_log  logs/host.access.log  main;        root   "E:/phpStudy/WWW";                location / {            index  index.html index.htm index.php l.php;            autoindex  off;            #如果请求既不是一个文件,也不是一个目录,则执行一下重写规则            if (!-e $request_filename)            {              #地址作为将参数rewrite到index.php上。              rewrite ^/(.*)$ /index.php/$1;              #若是子目录则使用下面这句,将subdir改成目录名称即可。              #rewrite ^/subdir/(.*)$ /subdir/index.php/$1;            }                    }        #error_page  404              /404.html;        # redirect server error pages to the static page /50x.html        #        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }        # proxy the PHP scripts to Apache listening on 127.0.0.1:80        #        #location ~ \.php$ {        #    proxy_pass   http://127.0.0.1;        #}        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000        #        location ~ \.php(.*)$  {            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;            fastcgi_param  PATH_INFO  $fastcgi_path_info;            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;            include        fastcgi_params;        }                        # deny access to .htaccess files, if Apache's document root        # concurs with nginx's one        #        #location ~ /\.ht {        #    deny  all;        #}    }

编辑Nginx配置文件 一般在 /etc/nginx/conf.d 目录下 红色部分按如上配置

posted on
2016-02-11 16:20 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/gosky/p/5186503.html

你可能感兴趣的文章
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
php match_model的简单使用
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>
移动开发平台-应用之星app制作教程
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
如何在maven工程中加载oracle驱动
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
下一代操作系统与软件
查看>>
Python IO模型
查看>>
DataGridView的行的字体颜色变化
查看>>