You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678 |
- #请复制下面伪静态配置到nginx配置文件中:
- #规则适合PbootCMS V2.0+版本
-
- location / {
- if (!-e $request_filename){
- rewrite ^/(.*)$ /index.php?p=$1 last;
- }
- }
|