部分演示效果:https://www.wangxiansheng.com/ (最近时间比较紧,先把单站版发布出来。该版本精简了部分功能,适合基础使用,有能力的朋友可以自行二次开发。
后续我会继续完善互联版。
需要说明的是,为了方便安装统计和后续维护,程序安装时会向我的接口发送基础注册信息。如不希望发送,可自行修改代码移除,或选择拒绝使用此程序。)
下载链接:https://pan.quark.cn/s/c5cb498ba004
伪静态如下:
location ~ ^/(core|config|data|cache|tools)/ { deny all; return 403; } location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { include fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; }