迁移禅知到宝塔lnmp下,之前的apache规则不能使用了,单独几个转换自己后加的:
location /admin { rewrite ^(.*)$ /admin.php/$1 last;break;
}
location ^~ /message/ { rewrite ^(.*)$ /index.php/message.html last;break;
}
location /search { rewrite ^(.*)$ /index.php/search.html?words=$args last;break;
}
location / { if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
}