释放双眼,带上耳机,听听看~!
跳转版
就是跳转到浏览器打开

安装使用
- 将源码上传到服务器
- 讲install.sql上传到数据库
- 在config.php配置数据库信息
- 配置伪静态
nginx
location / { index index.php index.html; if (!-e $request_filename) { rewrite ^/(.+)$ /do.php?uid=$1 last; } }
apache 新建一个.htaccess文件 粘贴下面代码 重启服务器
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ /do.php?uid=$1 [R] </IfModule>
即视版
就是直接在QQ内打开

安装使用
- 将源码上传到服务器
- 讲install.sql上传到数据库
- 在config.php配置数据库信息
- 配置伪静态
nginx
location / { index index.php index.html; if (!-e $request_filename) { rewrite ^/(.+)$ /do.php?uid=$1 last; } }
apache 新建一个.htaccess文件 粘贴下面代码 重启服务器
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ /do.php?uid=$1 [R] </IfModule>
