源码简介
视频教程在源码里面
下载源码解压后即可观看视频教程
伪静态
location / {
index index.php index.html index.htm;
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.php?s=k_e_k_c_c_n;
}
}
location /api/ {
index index.php index.html index.htm;
if (!-e $request_filename)
{
rewrite ^/api/(.*)$ /api/index.php?s=k_e_k_c_c_n;
}
}
location ~* /upload/.+.(html|php)$ {
return 404;
}
location ~* ^/plugins/.+.(html|php)$ {
return 404;
}
location ~* /themes/.+.(html|php)$ {
return 404;
}
© 版权声明
THE END
暂无评论内容