thinkphp 伪静态规则

点击查看代码
location ~* (runtime|application)/{
	return 403;
}
location / {
	if (!-e $request_filename){
		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
	}
}
posted @ 2024-06-12 14:05  php冉  阅读(45)  评论(0)    收藏  举报