码迷,mamicode.com
首页 > Web开发 > 详细

nginx支持pathinfo并且隐藏index.php

时间:2016-10-31 21:55:18      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:this   request   target   com   like   get   bsp   fast   location   

 

How To Set Nginx Support PATHINFO URL Model And Hide The /index.php/

就像这样

The URL before setting like this:

http://serverName/index.php?m=Home&c=Customer&a=getInformation&id=1

Now like this:

http://serverName/Home/Customer/getInformation/id/1


这是偶的配置:

server {

    listen       80;

    server_name  mybuy.com;

    root   /Users/he/Projects/maibei-backend;

    #charset koi8-r;

 

    access_log  /Users/he/weblog/mybuy.com.access.log;

    error_log   /Users/he/weblog/mybuy.com.error.log;

    location / {

        if (!-e $request_filename) {

            rewrite  ^(.*)$  /index.php?s=$1  last;

            break;

        }

        index  index.php index.html index.htm;

    }

 

 

    # pass the PHP scripts to FastCGI server listening on 192.168.1.123:9000

    #

    location ~ \.php {

        fastcgi_pass   127.0.0.1:9000;

        fastcgi_index  index.php;

        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;

        include        fastcgi_params;

 

        set $path_info "";

        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;

    }

}

 

nginx支持pathinfo并且隐藏index.php

标签:this   request   target   com   like   get   bsp   fast   location   

原文地址:http://www.cnblogs.com/jingjingzhou/p/6016971.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!