**环境配置**
宝塔面板 + Nginx + PHP 5.6 + MySQL
**安装步骤**
1. 导入数据库文件 `www.ohbbs.cn.sql`
2. 修改根目录配置文件 `config.php` 中的数据库参数
3. 配置服务器伪静态规则(见下方)
4. 访问域名完成安装
**后台入口**
– 地址:`域名/login.php`
– 默认账号:`www.ohbbs.cn`
**伪静态规则**
**Nginx 配置**
“`nginx
rewrite ^/index.html$ /index.php;
rewrite ^/about.html$ /about.php;
rewrite ^/search.html$ /search.php;
rewrite ^/apply.html$ /apply.php;
rewrite ^/404.html$ /404.php;
rewrite ^/sort([1-9]+[0-9]*).html$ /sort.php?id=$1;
rewrite ^/sort([a-zA-Z]+).html$ /sort.php?alias=$1;
rewrite ^/site_([1-9]+[0-9]*).html$ /site.php?id=$1;
“`
**Apache 配置**
“`apache
RewriteEngine On
RewriteBase /
RewriteRule ^index.html /index.php [L,NC]
RewriteRule ^about.html about.php [L,NC]
RewriteRule ^search.html search.php [L,NC]
RewriteRule ^apply.html apply.php [L,NC]
RewriteRule ^404.html 404.php [L,NC]
RewriteRule ^sort([0-9]+).html sort.php?id=$1 [L,NC]
RewriteRule ^sort([a-zA-Z]+).html sort.php?alias=$1 [L,NC]
RewriteRule ^site_([0-9]+).html site.php?id=$1 [L,NC]
“`
解压密码: qq112233aa
暂无评论内容