mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
6 lines
98 B
Nginx Configuration File
6 lines
98 B
Nginx Configuration File
location / {
|
|
if (!-e $request_filename){
|
|
rewrite ^(.*)$ /index.php?s=$1 last; break;
|
|
}
|
|
}
|