nginx中path模式配置示例

发布时间:2022-04-24 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了nginx中path模式配置示例脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

nginx服务器默认是不支持pathinfo模式的,即类似index.php/index形式的url会提示404。在这里,需要对nginx配置文件中需要开启pathinfo模式的server予以修改配置,修改nginx.conf文件如下:

复制代码 代码如下:

server{
 server_name   blog.COM;
 listen        80;
 root          /home/wwwroot/bLOG;
 index         index.php index.htML index.htm;
  
 access_log    /data/log/blog.access.log;
 error_log     /data/log/blog.error.log;

 location / {
  index index.php;
  if (!-e $request_filename){
   rewrITe ^/(.*)$  /index.php/$1   last;
   break;
  }
 }

 location ~ \.php {
  #fastcgi_pass  127.0.0.1:9000;
  fastcgi_pass unix:/dev/shm/PHP-CGI.sock;
  fastcgi_index index.php;
  #fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_SCRIPT_NAME;
  include       fastcgi.conf;
  include       fcgi_pathinfo.conf;
  set   $real_script_name $fastcgi_script_name;
  if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$"){
   set $real_script_name $1;
   set $path_info        $2;
  }
  fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
  fastcgi_param SCRIPT_NAME $real_script_name;
  fastcgi_param PATH_INFO $path_info;
 }
       location ~ .*\.(gif|jpg|jPEg|png|bmp|swf|flv|ico)$ {
  expires 30d;
    }

      location ~ .*\.(js|css)?$ {
           expires 7d;
       }

   error_page 404                /404.html;
   error_page  500 502 503 504    /50x.html;
   location = /50x.html{
     root /home/wwwroot/;
   }
}

并添加fcgi_pathinfo.conf如下:

复制代码 代码如下:

fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;
fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;
fastcgi_param  HTTPS              $https if_not_empty;

fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
fastcgi_param  SERVER_Software    nginx/$nginx_version;


fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;

fastcgi_param  redIRECT_statUS    200;

重要的就是,~\.php后面不能有$,以便能够匹配所有*.php/*形式的url,并且if与后面的括号之间必须有一个空格。

完毕之后,重启nginx。

脚本宝典总结

以上是脚本宝典为你收集整理的nginx中path模式配置示例全部内容,希望文章能够帮你解决nginx中path模式配置示例所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: