thinkphp 伪静态规则

php冉 / 2024-06-13 / 原文

点击查看代码
location ~* (runtime|application)/{
	return 403;
}
location / {
	if (!-e $request_filename){
		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
	}
}