如果你的服务器为Nginx环境,请配置伪静态location / {
index index.html index.htm index.php;
#autoindex on;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}


本文为作者原创,未经授权禁止转载。转载请保留原文链接并注明出处。
