MVideo影视自动采集系统

简介

MVideo影视自动采集系统是我无聊的时候写的一款在线采集播放影视的程序
程序为PHP编写,ajax读取数据

说明

1.自动采集影视资源
2.在线播放功能
3.搜索全网资源功能
4.无需数据库

首页和播放页屏蔽了两个分区内容:伦理片 福利区
可在URL后加password.html 输入密码进行解锁一个小时
如:http://kan.noome.cn/password.html 密码:不告诉你

对接资源站点:zuida.me 做到实时更新
推荐配置:Nginx+PHP7.1
演示站点:http://kan.noome.cn

图片

首页 播放页

下载

蓝奏网盘:https://www.lanzoux.com/i271xtc

伪静态配置规则

Nginx

location / {
    rewrite ^/list/?([0-9]+)?/?$ /index.php?id=$1;
    rewrite ^/play/?([0-9]+)?/?$ /lib/play.php?id=$1;
    rewrite ^/search/([^/]+)/?$ /lib/search.php?key=$1;
    rewrite ^/zhibo.html /lib/zhibo.php;
    rewrite ^/password.html /lib/password.php;
}

Apache

RewriteEngine On
RewriteRule ^list/?([0-9]+)?/?$ index.php?id=$1
RewriteRule ^play/?([0-9]+)?/?$ lib/play.php?id=$1
RewriteRule ^search/([^/]+)/?$ lib/search.php?key=$1
RewriteRule ^zhibo.html lib/zhibo.php
RewriteRule ^password.html lib/password.php

原文链接:https://mlooc.cn/archives/MVideo–Automatic-acquisition.html (转载时请注明本文出处及文章链接)

© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 共20条

请登录后发表评论

    没有评论内容