宝塔的话直接在网站的伪静态一栏中如下就行
location /admin {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
location / {
try_files $uri $uri/ /index.php;
}
原文地址:https://www.cnblogs.com/ilovepan/p/10298003.html
时间: 2024-10-10 02:46:43