v1.1.1页面修复

This commit is contained in:
2026-05-07 12:46:32 +08:00
parent e40fe98b42
commit 80b71a973a
3 changed files with 62 additions and 6 deletions

View File

@@ -38,6 +38,7 @@ ai-chat/
├── public/ # Web 根目录Nginx 指向此目录)
│ ├── index.php # 首页入口(自动路由到登录/安装页)
│ ├── api.php # API 统一入口
│ ├── router.php # PHP 内置开发服务器路由文件
│ ├── login.php # 登录页面
│ ├── chat.php # 聊天主页面
│ ├── config.php # 配置管理页面
@@ -84,21 +85,27 @@ ai-chat/
composer install
```
3. **配置 Nginx**
3. **启动开发服务器**(本地开发)
```bash
php -S localhost:8080 -t public/ public/router.php
```
然后访问 `http://localhost:8080/`
4. **或配置 Nginx**(生产部署)
- 将网站根目录指向 `public/` 目录
- 参考 `docs/nginx.conf` 或 `docs/baota-nginx-snippet.conf` 配置 Nginx
4. **设置目录权限**
5. **设置目录权限**(生产部署)
```bash
chmod -R 755 .
chown -R www:www .
```
5. **运行安装向导**
6. **运行安装向导**
- 访问 `http://your-domain.com/install.php`
- 按照向导步骤完成安装
详细安装说明请查看 [INSTALL.md](INSTALL.md)。
详细安装说明请查看 [INSTALL.md](INSTALL.md) 和 [DEPLOY.md](docs/DEPLOY.md)
## 页面说明