minimalist-web-notepad – 极简网络记事本

产品演示:

https://notes.orga.cat/whatever

https://notes.orga.cat/

安装教程:

Github: https://github.com/pereorga/minimalist-web-notepad

下载代码,保存到主机目录,然后编辑 index.php 文件,更改$base_url变量以指向您的站点。

写入伪静态:

On Apache:

您可能需要启用 mod_rewrite ,并在站点配置中设置文件。默认配置文件为:.htaccess

On Nginx:

主目录:

location / {
    rewrite ^/([a-zA-Z0-9_-]+)$ /index.php?note=$1;
}

子目录:

location ~* ^/notes/([a-zA-Z0-9_-]+)$ {
    try_files $uri /notes/index.php?note=$1;
}