封尘博客-一款轻量级,简单方便的php博客
3年前
特色功能
后台前后端分离,可以放在域名下的任何位置(建议安装后改下后台目录名)
简单的模板语言,自定义模板再也不用那么痛苦,比起html,php混写更优雅
自研的高性能框架,确保不会被常规框架漏洞所注入
安装教程
1.直接下载源码,或者git clone
https://gitee.com/lovefc/fcblog
2.在目录执行composer install (主要是引入fcphp6框架,一直在更新)
3.导入目录Sql中的blog.sql文件,然后在Main/Config/db/mysql.php文件中设置下数据库信息即可(配置default那个键名)
4.Nginx,Apahce要将Main设为主目录,另外必需将以下目录设置成可读写
Main/Log
Main/Cache
Main/Runtime
Main/Uploads
Main/Cover
另外如果访问页面提示无法引用文件,请在Main/user.ini文件中加上:/www/wwwroot/xxx.cn/fcblog/vendor/ 这个目录位置
5.程序必须使用伪静态访问
nginx设置伪静态:
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?$1 last;
}
apace设置伪静态:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?$1 [QSA,PT,L]
</IfModule>
后台地址: http://127.0.0.1/Admin 账号:admin@lovefc.cn 密码:admin123