续秒下载站泛目录站群程序

最近下载站很火,案例不少,收录极快,出词效果极佳,据说配合快排,几天就能出权重。

分析了一些网友提供过来的下载站的数据,不少是小旋风蜘蛛池使用下载站模板做的,也有不少是通过类似于本文的泛目录做的。

下文中的一套最新下载站泛目录程序,由曹操好友在上月底提供,终于在今晚找到了站群程序的作者,经允许后发布出来,暂且称本程序为:续秒下载站泛目录程序吧!

本程序为开源程序,欢迎各位大佬二开!

请注意,本程序为他人程序仅作展示交流,不作售卖。

发布日期:2020-08-27 21:37:45

最后更新日期:2022-03-06 20:08:07

演示站

续秒下载站泛目录站群程序-第1张图片

演示说明请不要用本程序从事任何违法行为!

1.演示站点非站内链接,请自行复制访问,仅作程序/源码演示,不作为其他任何用途;

2.演示站点为源程序的代码,站点内的任何内容与我站无关,所有内容均非我站观点,如有违法、不雅内容,请联系我站删除;

3.演示站点为二级域名,因此演示站或存在二级域名、二级目录无法正常打开的情况,故不能完全演示;

4.演示站点具有时效性,站长仅能保证安装时所有文件可用,如采集php文件、推送php文件等,不能保证源采集点还能使用;

5.请认真参阅演示站点,如有个别页面/文件无法打开的,大多属于源程序存的问题,购买即视为认可,不在售后范围;

6.演示站点使用robots.txt屏蔽所有搜索引擎抓取,不能视为该站群程序的使用后的实际效果;

站点优势

1、程序自带5套模板;

2、将中文转成ascii码;

3、内置泛域名分城市功能;

安装流程

程序简单且便于安装,请在Apache环境下运行,无需安装伪静态即可使用;

自行通过了解程序架构,配置相应关键词、栏目及内容;

某些情况下需要写一下伪静态:

if (!-e $request_filename){
  rewrite (.*)$ /index.php?phpcaiji=/$1 last;
}

当然如果有哥们必须要用nginx,请使用下面的伪静态

 location / {
 rewrite /baidu_verify_(\w+).html /21.php break;
  rewrite ^/template/(.*)\.html$ /index.php last;
  rewrite ^/core/(.*)\.php$ /index.php last;
  rewrite ^/temp/(.*)\.MYD$ /index.php last;
  if (!-e $request_filename){
    rewrite ^/(.*)$ /index.php?$1 last;
  }
}

程序架构

submit.php

根目录下submit.php为推送文件,

可配置网站域名,推送提交次数,以及相应接口

可配置网站名称,tags数量,站点发布日期;

Config.php

sys下的config目录下的Config.php文件,为设置文件

可自定义以下文件路径:

关键词txt文件路径:/data/txt/word/

标题txt文件路径:/data/txt/title/

标题分词txt文件路径:/data/txt/related/

内容txt文件路径:/data/txt/art/

栏目txt文件路径:/data/txt/menu/

TAGtxt文件路径:/data/txt/tag/

本地图片路径:/data/img/

oss图片文件名路径:/data/img/oss-url.txt

网站更新判断json:/data/cache/updata.json

分站名字:/data/cache/sitename.txt

分站前缀:/data/cache/sitepin.txt

URL提交成功记录:/data/cache/submit.json

程序其余四套模板展示

续秒下载站泛目录站群程序-第2张图片

续秒下载站泛目录站群程序-第3张图片

续秒下载站泛目录站群程序-第4张图片

续秒下载站泛目录站群程序-第5张图片

程序架构

<续秒下载站>
├.htaccess
├.user.ini
├404.html
├favicon.ico
├index.php
├robot.txt
├sitemap.xml
├sitemapXML.php
├submit.php
├<data>
│  ├<cache>
│  │  ├sitename.txt
│  │  ├sitepin.txt
│  │  ├submit.json
│  │  └updata.json
│  ├<img>
│  │  ├oss-url.txt
│  │  ├<file>
│  │  │  ├20170107092745.png
│  │  │  ├省略
│  ├<txt>
│  │  ├<art>
│  │  │  ├<01>
│  │  │  │  └art.txt
│  │  ├<menu>
│  │  │  ├<01>
│  │  │  │  └lanmu.txt
│  │  │  ├<02>
│  │  │  │  └lanmu.txt
│  │  ├<related>
│  │  │  ├<01>
│  │  │  │  └retitle.txt
│  │  │  ├<02>
│  │  │  │  └retitle.txt
│  │  ├<tag>
│  │  │  ├<01>
│  │  │  │  └tag.txt
│  │  │  ├<02>
│  │  │  │  └tag.txt
│  │  ├<title>
│  │  │  ├<01>
│  │  │  │  └title.txt
│  │  │  ├<02>
│  │  │  │  └title.txt
│  │  ├<word>
│  │  │  ├<01>
│  │  │  │  └word.txt
│  │  │  ├<02>
│  │  │  │  └word.txt
├<sys>
│  ├autoload.php
│  ├<config>
│  │  └Config.php
│  ├<core>
│  │  ├Assign.class.php
│  │  ├Display.class.php
│  │  ├MixedCode.class.php
│  │  ├Model.class.php
│  │  └Router.class.php
│  ├<function>
│  │  └Public.func.php
├<view>
│  ├<game>
│  │  ├index.html
│  │  ├list.html
│  │  ├show.html
│  │  ├tag.html
│  │  ├<file>
│  │  │  ├a_bag.png
│  │  │  ├a_game.png
│  │  │  ├省略
│  ├<game2>
│  │  ├index.html
│  │  ├list.html
│  │  ├show.html
│  │  ├tag.html
│  │  ├<file>
│  │  │  ├省略
│  │  │  ├common.js
│  │  │  ├common_2.css
│  │  │  ├common_2.js
│  │  │  ├downl_details.css
│  │  │  ├downl_details.js
│  │  │  ├ico_i.png
│  │  │  ├ico_img_cha.png
│  │  │  ├ico_img1.png
│  │  │  ├ico_img2.png
│  │  │  ├index.css
│  │  │  ├jquery-1.11.3.min.js
│  │  │  ├r-icon-pre.png
│  │  │  ├style.css
│  │  │  ├swiper.css
│  │  │  └swiper.js
│  ├<gamePC>
│  │  ├index.html
│  │  ├list.html
│  │  ├show.html
│  │  ├tag.html
│  │  ├<file>
│  │  │  ├01.gif
│  │  │  ├02.gif
│  │  │  ├404.png
│  │  │  ├api.png
│  │  │  ├arrows.png
│  │  │  ├backtop.png
│  │  │  ├base.css
│  │  │  ├circle.png
│  │  │  ├cmt_icos.png
│  │  │  ├default.jpg
│  │  │  ├global.js
│  │  │  ├iconfont.eot
│  │  │  ├iconfont.svg#iconfont
│  │  │  ├iconfont.ttf
│  │  │  ├iconfont.woff
│  │  │  ├icon-pl_bak.png
│  │  │  ├icos.png
│  │  │  ├idx_script.js
│  │  │  ├jquery.js
│  │  │  ├jquery-1.8.2.min.js
│  │  │  ├lianxi_icos.png
│  │  │  ├line_bg.gif
│  │  │  ├loading.js
│  │  │  ├logo.png
│  │  │  ├member.css
│  │  │  ├member.js
│  │  │  ├orderby.js
│  │  │  ├orderby2.js
│  │  │  ├qqun.png
│  │  │  ├safe.png
│  │  │  ├screenshots.js
│  │  │  ├share_btn.png
│  │  │  ├soft_icon.png
│  │  │  ├style3500.css
│  │  │  ├weixin.jpg
│  │  │  └wx_code.jpg
│  ├<gamePC2>
│  │  ├index.html
│  │  ├list.html
│  │  ├show.html
│  │  ├tag.html
│  │  ├<file>
│  │  │  ├base.js
│  │  │  ├bglin-mb.png
│  │  │  ├btn-prev-next.png
│  │  │  ├donwl_info.js
│  │  │  ├downl_info.css
│  │  │  ├downl_lis.css
│  │  │  ├ico-list.png
│  │  │  ├ico-search.png
│  │  │  ├ico-xlin.png
│  │  │  ├img-gzh.jpg
│  │  │  ├index.css
│  │  │  ├jq1.9.js
│  │  │  ├lazyload.js
│  │  │  ├logo.png
│  │  │  ├pic_show.js
│  │  │  ├Slide.js
│  │  │  └style.css
│  │  ├<images>
│  │  │  ├省略
本站所有内容仅限用于学习和研究目的,程序仅供本地断网测试,转载请说明出处!
站群SEO » 续秒下载站泛目录站群程序

发表评论

欢迎 访客 发表评论

聚合全网站群程序及推送工具!

联系站长 联系客服