超简单的在线记事本源码 Minimalist Web Notepad
Posted by he; tagged with none
项目地址:https://github.com/pereorga/minimalist-web-notepad
本地下载:minimalist-web-notepad-master.zip
修改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; }