项目地址: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;
}

在线记事本

请为这篇文章评分:
( 已有 2 人评分, 平均得分: 5 分 )

Tags: none

Related Posts:
  • [尚无相关文章]

评论已关闭