安装教程
1.数据库信息配置在路径【config/database.php】文件中
2.导入根目录下的【data.sql】数据库文件
3.设置网站运行目录为根目录【public】
4.后台地址 ,域名 /admin/login.html
账户 admin 密码 123456
5.伪静态规则
#nginx伪静态#
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
#apache伪静态#
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L,E=PATH_INFO:?$1]
</IfModule>
源码截图
![图片[1]阿里小站|迅雷小站|天翼小站|资源分享ThinkPHP内核API接口管理平台源码阿里小站|迅雷小站|天翼小站|资源分享西瓜社区](https://xg-1305220893.cos.ap-beijing.myqcloud.com/2022/04/20220403162727721-1024x511.png?imageMogr2/format/webp/interlace/1/quality/90|watermark/2/text/6KW_55Oc56S-5Yy6d3d3LnhnNi5jbg==/fill/IzNEM0QzRA/fontsize/30/dissolve/20/gravity/northeast/dx/20/dy/20/batch/1/degree/45)
![图片[2]阿里小站|迅雷小站|天翼小站|资源分享ThinkPHP内核API接口管理平台源码阿里小站|迅雷小站|天翼小站|资源分享西瓜社区](https://xg-1305220893.cos.ap-beijing.myqcloud.com/2022/04/20220403162727937-1024x561.png?imageMogr2/format/webp/interlace/1/quality/90|watermark/2/text/6KW_55Oc56S-5Yy6d3d3LnhnNi5jbg==/fill/IzNEM0QzRA/fontsize/30/dissolve/20/gravity/northeast/dx/20/dy/20/batch/1/degree/45)
© 版权声明
THE END
暂无评论内容