超简单的在线记事本源码 Minimalist Web Notepad
minimalist-web-notepad-master
这个功能找了很久,才找到, 非常符合我的需求
1 , 可以随时在线记录一点文字 (图片不可以)
2, 无需登录,方便快捷
3. 内容保存在云端(可以随时查看 ,不怕丢失)
只要记住网址就可以了。
项目地址:https://github.com/pereorga/minimalist-web-notepad
网络记事本: https://url69.ctfile.com/d/253469-56502752-2979be?p=2206 (访问密码: 2206)
使用:
修改index.php中的$base_url字段网址。
nginx设置伪静态:
架设在根目录的:
location / {
rewrite ^/([a-zA-Z0-9_-]+)$ /index.php?note=$1;
}
放在在其他目录的,比如notes:
location ~* ^/notes/([a-zA-Z0-9_-]+)$ {
try_files $uri /notes/index.php?note=$1;
}
欢迎来撩 : 汇总all