完美运营站长导航源码修复版
完美运营站长导航源码修复版搭建环境:PHP5.6+MYSQL+ng1.8
Nginx伪静态规则:
rewrite ^/index.html$ /index.php;
rewrite ^/about.html$ /about.php;
rewrite ^/top.html$ /top.php;
rewrite ^/search.html$ /search.php;
rewrite ^/apply.html$ /apply.php;
rewrite ^/404.html$ /404.php;
rewrite ^/sort(+*).html$ /sort.php?id=$1;
rewrite ^/sort(+).html$ /sort.php?alias=$1;
rewrite ^/site_(+*).html$ /site.php?id=$1;
Apache的伪静态规则
RewriteEngine On
rewritebase /
RewriteRule ^index.\html /index\.php
RewriteRule ^about\.html about\.php
RewriteRule ^search\.html search\.php
RewriteRule ^apply\.html apply\.php
RewriteRule ^404\.html 404\.php
RewriteRule ^sort(+)\.html sort\.php?id=$1
RewriteRule ^sort(+)\.html sort\.php?alias=$1
RewriteRule ^site_(+)\.html site\.php?id=$1
将源码上传至服务器并解压,导入数据库
修改数据库配置信息
根目录下 config.php文件内
后台路径:
/admin
后台登录信息
admin admin888
修复内容:
1:修复原ICO图标与缩略图获取无效问题(原获取方式已死,现写入程序中了)
2:删减站点详情页无效统计
3:新增全站后台可管理若干广告位(不添加广告不显示)
4:修复其它若干问题
页:
[1]