系统亮点与功能特色
我爱导航(52DH Pro)网址导航系统由苏酷伊基于原版深度二次开发,完全免费开源。V2.0.0版本在前端UI视觉呈现、交互体验与后台管理功能上进行了全面革新,新增多项实用工具,优化代码结构,让导航网站搭建更简单、管理更高效。系统以极致的加载速度、完善的安全防护、持续迭代的专业级技术支持为核心,着力打造一个稳定、可定制的全能网址导航平台。
核心界面预览
📌推荐运行环境
服务器软件:Nginx 或 Apache
PHP版本:推荐使用PHP7.4,兼顾性能与兼容性
数据库:MySQL 5.6 及以上版本
💡三步极速安装指南
1. 将52DH Pro压缩包上传至网站根目录并解压。
2. 配置伪静态规则(代码见下文),保障页面路径美观且利于SEO。
3. 浏览器访问域名,按照智能安装向导填写数据库及管理员信息。
⚠️ 重要提醒:安装时设置的后台入口和管理员密码请务必牢记,后续登录必需。
后台默认访问地址:http(s)://你的域名/你自定义的后台入口
初始登录信息:admin / 123456(登录后请立即修改)
🧨Nginx伪静态规则(SEO优化专用)
rewrite ^/index.html$ /index.php last;
rewrite ^/about.html$ /about.php last;
rewrite ^/search.html$ /search.php last;
rewrite ^/ranking.html$ /ranking.php last;
rewrite ^/apply.html$ /apply.php last;
rewrite ^/404.html$ /404.php last;
rewrite ^/category-([1-9]+[0-9]*).html$ /category.php?id=$1 last;
rewrite ^/category-([a-zA-Z]+).html$ /category.php?alias=$1 last;
rewrite ^/site/([1-9]+[0-9]*).html$ /site.php?id=$1 last;
rewrite ^/site/([a-zA-Z]+).html$ /site.php?alias=$1 last;
rewrite ^/article.html$ /article.php last;
rewrite ^/article-list-([1-9]+[0-9]*).html$ /article_list.php?id=$1 last;
rewrite ^/article-([1-9]+[0-9]*).html$ /article_show.php?id=$1 last;
rewrite ^/img/favicon/(.*)$ /favicon.php?url=$1 last;
rewrite ^/img/favicon/(.*).png$ /favicon.php?url=$1 last;
rewrite ^/img/preview/(.*).png$ /preview.php?url=$1 last;
location ~ "^/img/favicon/([^/]+)/?.png$" {
try_files /$uri /$uri/ /favicon.php?url=$1;
}
location ~ "^/img/preview/([^/]+)/?.png$" {
try_files /$uri /$uri/ /preview.php?url=$1;
}
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
















暂无评论内容