源码简介
视频教程在源码里面
下载源码解压后即可观看视频教程
蓝奏网盘:https://wwia.lanzouj.com/iMHuj1hjbboj
—
备用网盘:https://dpzyw.lanzoui.com/iMKBIu92i3c






伪静态
location / {
index index.php index.html index.htm;
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.php?s=$1;
}
}
location /api/ {
index index.php index.html index.htm;
if (!-e $request_filename)
{
rewrite ^/api/(.*)$ /api/index.php?s=$1;
}
}
location ~* \/upload\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/plugins\/.+\.(html|php)$ {
return 404;
}
location ~* \/themes\/.+\.(html|php)$ {
return 404;
}
© 版权声明
文章版权归作者所有,未经允许请勿转载。
相关文章
暂无评论...