记录mac下tp5的nginx配置

tp5运行的时候会出现”模块不存在"的错误,原因是由于nginx配置rewrite的错误。正确的配置如下:

location / {

            if (!-e $request_filename){

                rewrite ^(.+\.php)(/.+)$ /$1?s=$2 last;

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

            }

            index index.php;

}

你可能感兴趣的:(记录mac下tp5的nginx配置)