文章最后更新时间:
系统核心介绍
我爱导航(52DH Pro)网址导航系统是一款基于开源协议、由苏酷伊团队深度二次开发并免费发布的专业网址导航解决方案。本次发布的V2.0.0版本,在原有V1.1.1版本基础上进行了全面革新,重点优化了前端用户界面(UI)的视觉体验与交互逻辑,并新增了多项实用功能,同时对后端管理中心进行了大幅优化与重构。本系统致力于为用户提供极致的性能体验、完善的安全保障、专业的技术支持,并秉承持续创新的产品理念,通过不断迭代优化系统功能,旨在打造行业领先的专业级网站网址导航系统。
部署环境要求
为了确保52DH Pro网址导航系统的最佳运行效果,建议您按照以下环境进行部署:
- Web服务器: Nginx 或 Apache
- PHP版本: 建议使用 PHP 7.4 或更高版本
- 数据库: MySQL 5.6 或更高版本
详细安装教程
请按照以下步骤完成52DH Pro网址导航系统的安装:
- 将下载的“52DH Pro”程序压缩包上传至您网站的根目录并解压。
- 根据您使用的Web服务器(Nginx或Apache)配置相应的伪静态规则(规则见下文)。
- 通过浏览器访问您的网站域名,系统将自动跳转到安装页面。
- 按照页面提示,依次填写数据库信息、管理员账号等核心配置。
- 重要提示: 请务必准确填写所有系统核心信息,并妥善保管,安装完成后请立即修改默认管理员密码以确保安全。
后台访问地址: http(s)://您的域名/安装时设置的后台入口路径
默认管理员账号: admin

默认管理员密码: 123456 (强烈建议首次登录后立即修改)
Nginx伪静态规则配置
若您使用Nginx服务器,请将以下规则添加到您的站点配置文件中,以实现优美的URL链接:
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;
}
配置完成后,请重启Nginx服务使规则生效。
© 版权声明
THE END




















暂无评论内容