Nginx 在php支持或者不支持PATH_INFO (Nginx 配置文件)

IT-Pony 2016-04-25 PM 436℃ 0条

如果支持PATH_INFO (nginx配置)

try_files $uri $uri/ @rewrite;

location @rewrite {
    rewrite ^/(.*)$ /index.php/$1;
}

不支持PATH_INFO (Nginx 配置);

if (!-e $request_filename) {
    rewrite  ^/(.*)$  /index.php?s=$1  last;
    break;
}
标签: Linux

非特殊说明,本博所有文章均为博主原创。

评论啦~