PHP文档管理系统,markdown文档管理,开发手册制作,教程文档制作,editormd编辑器。支持图片上传。

全新安装宝塔体验1分钟基本搞定,安装很简单,该类系统很少,非常适合做帮助文档,特别推荐,缺点一个文档中不能建多目录,文档支持代码插入,增加文档都非常方便。感觉比较像语雀。系统全开源,作者gitee仓库下载或者本站下载都支持。
演示地址:https://doc.aphp.top
安装说明:

  1. 上传并解压安装包到网站目录
  2. 设置-网站目录-运行目录到/public
  3. 设置-伪静态规则(看根目录url_rewrite.txt
  4. 修改config/database.php中数据库配置
  5. 访问并输入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

20241217135516246

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。