源码介绍
Rtworld 目录网导航开源源码 2.0 是全网首发的全解开源版本,功能特别齐全,支持多模板切换、多分类管理,还新增了影视、小说相关功能,操作简单易上手,不管是搭建个人目录网还是站长做导航站都很合适,提交网站就能收录,还能获取本地 TDK 信息。


核心功能
- 多模板切换:支持多前台模板、多跳转模板切换,可按需更换网站展示样式
- 系统管理功能:带有系统日志管理、系统数据清理工具,方便维护网站
- 多分类管理:支持多网站分类、多文章分类,还搭配了书籍、影视相关功能
- 便捷收录功能:支持采集数据,站长管理操作简单,提交即收录,各大网站还能推送收录域名
- 实用小功能:可一键获取本地 TDK 信息,去除接口卡带式,还有邮箱式提交收录,保证网站数据质量
- 新增特色功能:加入影视和小说功能,可自行添加相关数据,丰富网站内容
- 模板上传安装:支持自主上传安装前端模板、跳转模板,灵活性高
安装教程
- 将源码上传到服务器或虚拟主机的根目录,然后解压
- 按照要求给网站填写配置对应的伪静态规则
- 直接访问网站域名,跟着提示填写数据库相关信息,完成安装即可
- 后台入口:/Manage/,默认账户密码:Manage/123456
Nginx 伪静态规则
location = /index.html { rewrite ^(.*)$ /index.php; } location = /tb { rewrite ^(.*)$ /User/tb.php; } location = /jd { rewrite ^(.*)$ /User/jd.php; } location = /pdd { rewrite ^(.*)$ /User/pdd.php; } location = /404.html { rewrite ^(.*)$ /index.php?AS=404; } location /sort { rewrite ^/sort-([1-9]+[0-9]*).html$ /index.php?AS=sort&sid=$1; } location /arsort { rewrite ^/arsort-([1-9]+[0-9]*).html$ /index.php?AS=arsort&aid=$1; } location /article { rewrite ^/article-([1-9]+[0-9]*).html$ /index.php?AS=article&tid=$1; } location /web { rewrite ^/web-([1-9]+[0-9]*).html$ /index.php?AS=web&wid=$1; } location /book { rewrite ^/book-([1-9]+[0-9]*).html$ /index.php?AS=book&xid=$1; } location /movie { rewrite ^/movie-([1-9]+[0-9]*).html$ /index.php?AS=movie&ysid=$1; } location /app { rewrite ^/app-([1-9]+[0-9]*).html$ /index.php?AS=app&gid=$1; } location /qbwz { rewrite ^/qbwz.html$ /index.php?AS=qbwz; } location /books { rewrite ^/books.html$ /index.php?AS=books; } location /movies { rewrite ^/movies.html$ /index.php?AS=movies; } location /apps { rewrite ^/apps.html$ /index.php?AS=apps; } location /article_search { rewrite ^/article_search.html$ /index.php?AS=article_search; } location /search { rewrite ^/search.html$ /index.php?AS=search; }
发表评论