PHP文档管理系统,markdown文档管理,开发手册制作,教程文档制作,editormd编辑器。支持图片上传。
全新安装宝塔体验1分钟基本搞定,安装很简单,该类系统很少,非常适合做帮助文档,特别推荐,缺点一个文档中不能建多目录,文档支持代码插入,增加文档都非常方便。感觉比较像语雀。系统全开源,作者gitee仓库下载或者本站下载都支持。
演示地址:https://doc.aphp.top
安装说明:
- 上传并解压安装包到网站目录
- 设置-网站目录-运行目录到/public
- 设置-伪静态规则(看根目录url_rewrite.txt
- 修改config/database.php中数据库配置
- 访问并输入backup目录下的备份文件名进行安装(这里要注意恢复时需要输入目录下后面这目录名bak_all_20240614152908_2960)
管理员账号密码 admin admin
Nginx规则:
1 2 3 4 5 | location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php/$1 last; } } |
Apache规则:
1 2 3 4 5 | Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php? [L,E=PATH_INFO:$1] |
IIS规则
1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0" ?> <rules> <rule name="Rewrite to index.php_rewrite"> <match url="^(.*)$"/> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/> </conditions> <action type="Rewrite" url="/index.php/{R:1}"/> </rule> </rules> |
系统开源可以自行对照模板文件修改
首页修改:/app/index/view/index/index.html
顶部通用:/app/index/view/public/header.html
底部通用:/app/index/view/public/footer.html
跳转提示:/app/index/view/public/jump.html
服务声明: 本网站所有发布的源码、软件和资料均为作者提供或网友推荐收集各大资源网站整理而来,仅供功能验证和学习研究使用,您必须在下载后24小时内删除。不得使用于非法商业用途,不得违反国家法律,否则后果自负!一切关于该资源商业行为与本站无关。如果您喜欢该程序,请支持购买正版源码,得到更好的正版服务。如有侵犯你的版权合法权益,请邮件或QQ:3089659733与我们联系处理删除(邮箱:ynzsy@qq.com),本站将立即更正。
评论(0)