Files
geneagro_cms/rewrite/nginx.txt

8 lines
179 B
Plaintext
Raw Normal View History

2024-05-28 11:01:13 +08:00
#请复制下面伪静态配置到nginx配置文件中
#规则适合PbootCMS V2.0+版本
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?p=$1 last;
}
}