PbootCMS網站nginx偽靜態規則

黄文Rex發表於2024-09-12

nginx

#請複製下面偽靜態配置到nginx配置檔案中:
#規則適合PbootCMS V2.0+版本

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

相關文章