This commit is contained in:
tao 2021-12-06 16:03:02 +08:00
parent 703058a13b
commit 5f43c95f69
2 changed files with 10 additions and 6 deletions

View File

@ -7,8 +7,8 @@
* 后台http://adm.aieok.com:888
* 账号test
* 密码test123
* 版本TaoLer 1.8.13
* 日期2021.11.13
* 版本TaoLer 1.8.14
* 日期2021.12.6
#### 项目地址
@ -32,7 +32,7 @@
#### 构架组成
- 1.x版本构架
- 构架Tinkphp6 + layui2.6
- 环境php7 + mysql
- 环境php7/php8.0 + mysql
- 前端Fly template V3.0
#### 构架介绍
@ -83,13 +83,17 @@
* nginx
> 在`Nginx`低版本中,是不支持`PATHINFO`的,但是可以通过在`Nginx.conf`中配置转发规则实现:遇到`404`错误一般是nginx的伪静态错误
```bash
location / { // …..省略部分代码
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
rewrite ^(.*)$ /index.php?s=/$1 last; break;
}
}
```
>如果是宝塔集成环境,网站目录部署如下示例:
网站目录D:/www/TaoLer
运行目录:/public
3. 首次安装访问域名http://www.youdomain.com可自动跳转到/install/index进行引导安装重新安装需删除public目录下install.lock。
4. 安装前需要先创建mysql数据库(准备:数据库连接地址,数据库用户名,密码,端口)
5. 如果手动导入数据库管理员用户名和密码默认admin/123456前后台的管理员密码一致。前后端管理员账户是独立的前端主要对文章内容的审查管理等操作。

View File

@ -7,7 +7,7 @@ return [
//应用名,此项不可更改
'appname' => 'TaoLer',
//版本配置
'version' => '1.8.13',
'version' => '1.8.14',
//加盐
'salt' => 'taoler',
//数据库备份目录