1. 在index.php文件顶部,将$base_url变量更改为指向您的站点。
  2. 确保允许 Web 服务器写入_tmp目录。
  3. 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;
}



note.tar.gz下载