折影轻梦
文章74
标签43
分类4
开源程序:觅思树洞

开源程序:觅思树洞

觅思树洞,一个我一下午的作品。

版权 MIT

只需要留作者版权就行了。
感谢版权狗,作者已停更。

相关链接

Github:https://github.com/mixcm/lovewall/releases

展示图

首页

snipaste20171006_220536.png

提交表单

snipaste20171006_220544.png

伪静态

Apache

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^mous/page/(.*)$ /index.php?mous=&page=$1
RewriteRule ^mous/(.*)/page/(.*)$ /index.php?mous=$1&page=$2
RewriteRule ^mous/(.*)$ /index.php?mous=$1&page=1
RewriteRule ^pages/(.*)$ /index.php?pages=$1
</IfModule>

Nginx

rewrite ^/mous/page/(.*)$ /index.php?mous=&page=$1;
rewrite ^/mous/(.*)/page/(.*)$ /index.php?mous=$1&page=$2;
rewrite ^/mous/(.*)$ /index.php?mous=$1&page=1;
rewrite ^/pages/(.*)$ /index.php?pages=$1;

数据库说明

导入数据库

先将根目录内的 options.sql 和 contents.sql 导入数据库

连接数据库

在 /require/function.php 第三行 更改为自己的数据库信息

'mysql'=>'localhost',	//数据库地址
'name'=>'root',		//数据库登录名
'password'=>'',		//数据库密码
'dbname'=>'lovewall'	//数据库名

网站信息更改

在数据库中的表 options 中可以对对应项进行更改。

snipaste20171006_220927.png

本文作者:折影轻梦
本文链接:https://nexmoe.com/872.html
版权声明:本文采用 CC BY-NC-SA 3.0 CN 协议进行许可