引入nginx配置文件模板;

This commit is contained in:
2022-04-22 10:06:45 +08:00
parent 831a37b9ef
commit e35f068601

5
nginx.htaccess Normal file
View File

@@ -0,0 +1,5 @@
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}