文件架构与说明
文件结构
目录/文件 | 说明 |
---|---|
project_root/ | 项目根目录 |
css/ | 样式文件目录 |
css/style.css | 全局通用样式 |
css/index.css | 首页专用样式 |
css/search.css | 搜索页专用样式 |
database/ | 数据文件目录 |
database/dramas.txt | 短剧数据(格式:ID|标题|链接) |
database/users.txt | 用户数据(格式:用户名|密码) |
index.php | 网站首页 |
search.php | 搜索功能 |
login.php | 用户登录 |
auth.php | 身份验证 |
logout.php | 退出登录 |
drama_list.php | 短剧管理 |
drama_add.php | 添加短剧 |
drama_edit.php | 编辑短剧 |
drama_delete.php | 删除短剧 |
数据库文件格式
users.txt
username|password admin|123456
dramas.txt
1|短剧标题1|http://example.com/drama1 2|短剧标题2|http://example.com/drama2 3|短剧标题3|http://example.com/drama3
权限设置建议
类型 | 建议权限 |
---|---|
目录 | 755 (drwxr-xr-x) |
PHP 文件 | 644 (rw-r–r–) |
数据文件 | 666 (rw-rw-rw-) |
© 版权声明
THE END
暂无评论内容