MVideo影视自动采集系统是我无聊的时候写的一款在线采集播放影视的程序
程序为PHP编写,ajax读取数据
说明
自动采集影视资源
在线播放功能
搜索全网资源功能
无需数据库
首页和播放页屏蔽了两个分区内容:伦理片 福利区
可在URL后加password.html 输入密码进行解锁一个小时
对接资源站点:zuida.me 做到实时更新
推荐配置:Nginx+PHP7.1
下载地址:项目地址:https://github.com/MHanL/MVideo
伪静态配置规则
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 OnRewriteRule ^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
发表评论