PBOOTCMS在nginx虚拟主机location配置中添加规则,规则如下:
1、X版本使用如下规则: location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php/$1 last;
}
}
2、X+版本使用如下规则: location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php?p=$1 last;
}
}
服务器自带的Apache设置方法。
location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php?p=$1 last;
}
}