nginx模式默认是不支持pathinfo模式的,类似index.php/index形式的url会被提示找不到页面。下面的通过正则找出实际文件路径和pathinfo部分的方法,让nginx支持pathinfo。
本文基于安装lnmp一键安装包,添加虚拟主机情况下进行修改
如你要添加一个网站www.linuxeye.com支持pathinfo,配置文件nginx.conf不用任何改变(个人习惯),参考lnmp一键安装包
cat vhost/www.linuxeye.com.conf

  1. server {
  2. listen ;
  3. server_name www.linuxeye.com;
  4. access_log logs/www.linuxeye.com.log combined;
  5. root /home/wwwroot/www.linuxeye.com;
  6. error_page /.html;
  7. index index.html index.htm index.php ;
  8. location / {
  9. index index.php;
  10. if (!-e $request_filename) {
  11. rewrite ^/(.*)$ /index.php/$ last;
  12. break;
  13. }
  14. }
  15. location ~ \.php {
  16. fastcgi_pass 127.0.0.1:;
  17. fastcgi_index index.php;
  18. include fcgi_pathinfo.conf;
  19. set $real_script_name $fastcgi_script_name;
  20. if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
  21. set $real_script_name $;
  22. set $path_info $;
  23. }
  24. fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
  25. fastcgi_param SCRIPT_NAME $real_script_name;
  26. fastcgi_param PATH_INFO $path_info;
  27. }
  28. }

要点:
1.~ \.php 后面不能有$  以便能匹配所有 *.php/* 形式的url
2. 通过设置更改 SCRIPT_FILENAME

cat fcgi_pathinfo.conf

  1. #fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  2. #fastcgi_param SCRIPT_NAME $fastcgi_script_name; #这两行是需要注释掉的,请注意
  3. fastcgi_param QUERY_STRING $query_string;
  4. fastcgi_param REQUEST_METHOD $request_method;
  5. fastcgi_param CONTENT_TYPE $content_type;
  6. fastcgi_param CONTENT_LENGTH $content_length;
  7.  
  8. fastcgi_param REQUEST_URI $request_uri;
  9. fastcgi_param DOCUMENT_URI $document_uri;
  10. fastcgi_param DOCUMENT_ROOT $document_root;
  11. fastcgi_param SERVER_PROTOCOL $server_protocol;
  12. fastcgi_param HTTPS $https if_not_empty;
  13.  
  14. fastcgi_param GATEWAY_INTERFACE CGI/1.1;
  15. fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
  16.  
  17. fastcgi_param REMOTE_ADDR $remote_addr;
  18. fastcgi_param REMOTE_PORT $remote_port;
  19. fastcgi_param SERVER_ADDR $server_addr;
  20. fastcgi_param SERVER_PORT $server_port;
  21. fastcgi_param SERVER_NAME $server_name;
  22.  
  23. # PHP only, required if PHP was built with --enable-force-cgi-redirect
  24. fastcgi_param REDIRECT_STATUS ;

转自:http://blog.linuxeye.com/347.html

配置nginx,支持php的pathinfo路径模式的更多相关文章

  1. LNMP搭建04 -- 配置Nginx支持PHP

    首先建立存放网页文件的目录,执行 mkdri /usr/local/server/www  然后进入到该目录中 cd /usr/local/server/www 然后创建一个测试文件: phpinfo ...

  2. Linux - 配置php-fpm 以及 配置nginx支持php

    配置php-fpm [root@localhost php7]# which php-fpm /usr/local/php7/sbin/php-fpm [root@localhost php7]# p ...

  3. centos下配置nginx支持php

    添加nginx 默认主页index.php vim .../etc/nginx/conf.d/default.conf location / { root   /usr/share/nginx/htm ...

  4. Ubuntu下安装LNMP之php7的安装并配置Nginx支持php及卸载php

    据了解,php7是比之前的版本性能快很多的.http://php.net/get/php-7.2.2.tar.gz/from/a/mirror 安装前也可提前将相关依赖库安装好,或者在安装php时若安 ...

  5. Linux下安装php环境并且配置Nginx支持php-fpm模块[www]

    Linux下安装php环境并且配置Nginx支持php-fpm模块 http://www.cnblogs.com/freeweb/p/5425554.html 5分钟搭建 nginx +php --- ...

  6. 配置nginx支持Https

    配置nginx支持Https一定要先使用stop停止nginx然后重新代开不能使用reload 一:安装letsencrypt 1.从git上克隆下来git clone https://github. ...

  7. 配置nginx支持TP框架

    TP框架配置中默认URL_MODEL=1,而Nginx默认是不支持PATHINFO的.如果我们只想跑起来tp框架,很简单,只需到更改TP配置,设置URL_MODEL=3(兼容模式).但是如果要让Ngi ...

  8. 配置Nginx支持SSL SNI(一个IP绑定多个证书) 以及Haproxy实现多域名证书

    概述 传统的每个SSL证书签发,每个证书都需要独立ip,假如你编译openssl和nginx时候开启TLS SNI (Server Name Identification) 支持,这样你可以安装多个S ...

  9. centos7系统下安装php-fpm并配置nginx支持并开启网站gzip压缩

    注:此处不介绍nginx的安装.以下教程默认已安装nginx. 1. yum install -y php-fpm yum install php-pdo yum install php-mysql ...

随机推荐

  1. mysql deadlock处理

    1.SHOW ENGINE INNODB STATUS 得到最后一次死锁发生的状况 =====================================140110 11:43:07 INNOD ...

  2. 一分钟明白 VS manifest 原理

    什么是vs 程序的manifest文件 manifest 是VS程序用来标明所依赖的side-by-side组建,如ATL, CRT等的清单. 为什么要有manifest文件 一台pc上,用一组建往往 ...

  3. openvas

    http://www.freebuf.com/articles/5474.html EPEL http://www.centoscn.com/CentOS/config/2014/0920/3793. ...

  4. POJ1228+凸包

    见代码. /* 凸包(稳定凸包) 题意:给出一些点,这些点要么是凸包的顶点要么是边上的. 证明每条边上都至少有3个点. */ #include<stdio.h> #include<s ...

  5. What is the innovator’s solution——什么才是创新的解决方案2

    前略:http://www.cnblogs.com/Kassadin/p/4233497.html 案例1 从书上的一个案例开始: 让我们来看看AT&T公司(美国电话电报公司)的案例吧.198 ...

  6. linux下mysql修改数据库账户root密码

    #先停止mysql,再运行下一句 $ mysqld_safe --user=mysql --skip-grant-tables --skip-networking & $ mysql -u r ...

  7. jstack(查看线程)、jmap(查看内存)和jstat(性能分析)

    公司内部同事分享的一篇文章 周末看到一个用jstack查看死锁的例子.昨天晚上总结了一下jstack(查看线程).jmap(查看内存)和jstat(性能分析)命令.供大家参考 1.Jstack 1.1 ...

  8. tomcat集群部署

    1.apache只有处理静态事物的能力, 而tomcat的强项就是处理动态的请求 2.由apache作为入口,如果是请求静态页面或者是静态文件,由apache直接提供,如果是请求动态页面,则让apac ...

  9. Android 使用SDcard进行文件的读取

    平时我们需要在手机上面存储想音频,视频等等的大文件,以前学过使用File进行存储(使用File操作进行存储):由于考虑到手机本身的存储空间小,这时候我们需要把文件存储在SDcard中,今天自己也学习了 ...

  10. IMX51启动模式

    相关链接: http://blog.csdn.net/kickxxx/article/details/7236040 http://blog.csdn.net/evilcode/article/det ...