lnmp thinkphp5.1 其他控制器404

在conf配置文件中添加

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


# 这个官方的,没效果
location / { // …..省略部分代码
   if (!-e $request_filename) {
   		rewrite  ^(.*)$  /index.php?s=/$1  last;
    }
}

你可能感兴趣的:(thinkphp5.1,404)