源码简介
视频教程在源码里面
下载源码解压后即可观看视频教程
伪静态
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;
}
承接各类网站搭建、程序开发、应用部署、App封装、服务器配置、出租出售等业务,联系方式👉🏻点击右侧加微信客服咨询! © 版权声明
文章版权归作者:Mr.Cai所有,未经允许请勿转载。
THE END
暂无评论内容