将nginx伪静态配置设置为下面内容即可:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
官方文档:http://easyadmin.99php.cn/docs/base/install.html
官方文档关于nginx伪静态配置的描述容易引起误解:
将nginx伪静态配置设置为下面内容即可:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
官方文档:http://easyadmin.99php.cn/docs/base/install.html
官方文档关于nginx伪静态配置的描述容易引起误解: