mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
11 lines
329 B
Plaintext
11 lines
329 B
Plaintext
# Nginx 伪静态配置 - ThinkPHP
|
|
# 将此段内容添加到 nginx server 配置的 location / 块中即可。
|
|
# 如果使用 source/docker/ 下的 Docker 部署方式,已内置此规则,无需额外配置。
|
|
|
|
location / {
|
|
if (!-e $request_filename) {
|
|
rewrite ^(.*)$ /index.php?s=$1 last;
|
|
break;
|
|
}
|
|
}
|