|
完美运营站长导航源码修复版
搭建环境: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([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的伪静态规则
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]
将源码上传至服务器并解压,导入数据库
修改数据库配置信息
根目录下 config.php文件内
后台路径:
/admin
后台登录信息
admin admin888
修复内容:
1:修复原ICO图标与缩略图获取无效问题(原获取方式已死,现写入程序中了)
2:删减站点详情页无效统计
3:新增全站后台可管理若干广告位(不添加广告不显示)
4:修复其它若干问题 |
|