nginx 隐藏index.php 路径path化

server {

    listen       80 default;

    server_name  _;

        index index.html index.htm index.php;

        #root /alidata/www/default;

        root /alidata/www/sandbox_pro/sandbox;

        #rewrite ^/box/list   /index.php?r=box/list ;

        #rewrite ^/(.*)$   /index.php?r=$1 ;


        if ( -f  $request_filename/index.php) {

                rewrite (.*) $1/index.php;

        }


        if ( !-f $request_filename )  {

                rewrite (.*) /index.php;

        }

        location ~ .*\.(php|php5)?$

        {

                fastcgi_pass  127.0.0.1:9000;

                fastcgi_index index.php;

                include fastcgi.conf;

        }

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$

        {

                expires 30d;

        }

        location ~ .*\.(js|css)?$

        {

                expires 1h;

        }


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。