立即注册  找回密码
 立即注册
CeraNetworksBGVM服务器主机交流会员请立即修改密码Sharktech防护
查看: 500|回复: 12

响应大佬号召,放出Playtube1.3.1(开心版)

[复制链接]

响应大佬号召,放出Playtube1.3.1(开心版)

[复制链接]

18

主题

552

回帖

1890

积分

金牌会员

积分
1890
cdseoo

18

主题

552

回帖

1890

积分

金牌会员

积分
1890
2018-2-6 13:15:47 | 显示全部楼层 |阅读模式
本帖最后由 cdseoo 于 2018-2-6 13:21 编辑

响应各位大佬号召,放出Playtube1.3.1(开心版)下载直连,有需求的童鞋亦可保存一份。

demo:
[ol]
  • https://v.ly.tn[/ol]复制代码

    下载直链:
    [ol]
  • https://v.ly.tn/PlayTube.zip[/ol]复制代码

    有需求的童鞋可以去买49刀的正版

    [ol]
  • https://codecanyon.net[/ol]复制代码
  • 回复

    使用道具 举报

    11

    主题

    264

    回帖

    743

    积分

    高级会员

    积分
    743
    vultrlinode

    11

    主题

    264

    回帖

    743

    积分

    高级会员

    积分
    743
    2018-2-6 14:51:54 | 显示全部楼层
    感谢热心分享。但D盾扫描貌似有些问题,如果本地局域网内+91视频,效果貌似是极好的



    回复

    使用道具 举报

    0

    主题

    83

    回帖

    174

    积分

    注册会员

    积分
    174
    mapleaf

    0

    主题

    83

    回帖

    174

    积分

    注册会员

    积分
    174
    2018-2-6 13:55:21 | 显示全部楼层

    88232128 发表于 2018-2-6 13:27

    我就想问怎么支持nginx,这个程序好像只支持apache

    Nginx的伪静态文件:
    [ol]
  • # nginx configuration
  • location / {
  •   if (!-e $request_filename){
  •     rewrite ^/$ /index.php?link1=home;
  •   }
  •   if (!-e $request_filename){
  •     rewrite ^/aj/([^/.]+)/?$ /ajax.php?type=$1&first=$2;
  •   }
  •   rewrite ^/@([^\/]+)(\/|)$ /index.php?link1=timeline&id=$1;
  •   if (!-e $request_filename){
  •     rewrite ^/([^\/]+)(\/|)$ /index.php?link1=$1;
  •   }
  • }
  • location /reset {
  •   rewrite ^/reset-password/([^\/]+)(\/|)$ /index.php?link1=reset-password&code=$1;
  • }
  • location /confirm {
  •   rewrite ^/confirm/(.*)/(.*)$ /index.php?link1=confirm&code=$1&email=$2;
  • }
  • location /api {
  •   rewrite ^/api/v(([0-9])([.][0-9]+))(\/|)$ /api.php?v=$1;
  • }
  • location /admin {
  •   rewrite ^/admin-cp$ /admincp.php;
  •   rewrite ^/admin-cp/(.*)$ /admincp.php?page=$1;
  • }
  • location /admin-cdn/ {
  •   alias /admin-panel/;
  • }
  • location /videos {
  •   rewrite ^/videos/category/(.*)/rss(\/|)$ /index.php?link1=videos&page=category&id=$1&feed=rss;
  •   rewrite ^/videos/category/(.*)$ /index.php?link1=videos&page=category&id=$1;
  •   rewrite ^/videos/(.*)/rss(\/|)$ /index.php?link1=videos&page=$1&feed=rss;
  •   rewrite ^/videos/(.*)$ /index.php?link1=videos&page=$1;
  • }
  • location /articles {
  •   rewrite ^/articles(\/|)$ /index.php?link1=articles;
  •   rewrite ^/articles/category/(\d+)(\/|)$ /index.php?link1=articles&category_id=$1;
  •   rewrite ^/articles/read/(.*)(\/|)$ /index.php?link1=read&id=$1;
  • }
  • location /aj {
  •   rewrite ^/aj/([^/.]+)/([^/.]+)/?$ /ajax.php?type=$1&first=$2;
  •   rewrite ^/aj/([^/.]+)/([^/.]+)/([^/.]+)/?$ /ajax.php?type=$1&first=$2&second=$3;
  • }
  • location /edit {
  •   rewrite ^/edit-video/(.*)?$ /index.php?link1=edit-video&id=$1;
  • }
  • location /watch {
  •   rewrite ^/watch/([^\/]+)(\/|)?$ /index.php?link1=watch&id=$1;
  •   rewrite ^/watch/([^\/]+)/list/([^\/]+)(\/|)?$ /index.php?link1=watch&id=$1&list=$2;
  • }
  • location /embed {
  •   rewrite ^/embed/(.*)?$ /index.php?link1=embed&id=$1;
  • }
  • location /resend {
  •   rewrite ^/resend/(.*)/(.*)?$ /index.php?link1=resend&id=$1&u_id=$2;
  • }
  • location /redirect {
  •   rewrite ^/redirect/(.*)?$ /index.php?link1=redirect&id=$1;
  • }
  • location /settings {
  •   rewrite ^/settings/(.*)/(.*)$ /index.php?link1=settings&page=$1&user=$2;
  •   rewrite ^/settings/(.*)$ /index.php?link1=settings&page=$1;
  • }
  • location /terms {
  •   rewrite ^/terms/([^\/]+)(\/|)$ /index.php?link1=terms&type=$1;
  • }
  • location /go_pro {
  •   rewrite ^/go_pro(\/|)$ /index.php?link1=go_pro;
  • }
  • location /ads {
  •   rewrite ^/ads(\/|)$ /index.php?link1=ads;
  •   rewrite ^/ads/create(\/|)$ /index.php?link1=create_ads;
  •   rewrite ^/ads/edit/(\d+)(\/|)$ /index.php?link1=edit_ads&id=$1;
  • }
  • location /contact {
  •   rewrite ^/contact-us(\/|)$ /index.php?link1=contact;
  • }[/ol]复制代码
  • 回复

    使用道具 举报

    31

    主题

    267

    回帖

    913

    积分

    高级会员

    积分
    913
    宝创

    31

    主题

    267

    回帖

    913

    积分

    高级会员

    积分
    913
    2018-2-6 13:27:00 | 显示全部楼层



    是不是配合前几天爬的91视频要大干一场了
    回复

    使用道具 举报

    7

    主题

    416

    回帖

    1335

    积分

    金牌会员

    积分
    1335
    bitspirit

    7

    主题

    416

    回帖

    1335

    积分

    金牌会员

    积分
    1335
    2018-2-6 13:35:00 | 显示全部楼层
    没啥用好像,不过已经脱下来了

    回复

    使用道具 举报

    18

    主题

    552

    回帖

    1890

    积分

    金牌会员

    积分
    1890
    cdseoo 楼主

    18

    主题

    552

    回帖

    1890

    积分

    金牌会员

    积分
    1890
    2018-2-6 13:17:56 | 显示全部楼层

    bitspirit 发表于 2018-2-6 13:17

    没啥用好像,不过已经脱下来了

    顺便报下下载速度~谢谢~
    回复

    使用道具 举报

    17

    主题

    197

    回帖

    557

    积分

    高级会员

    积分
    557
    zjsay

    17

    主题

    197

    回帖

    557

    积分

    高级会员

    积分
    557
    2018-2-6 13:19:45 | 显示全部楼层
    马克一下,谢谢分享
    回复

    使用道具 举报

    3

    主题

    44

    回帖

    141

    积分

    注册会员

    积分
    141
    Chilsion

    3

    主题

    44

    回帖

    141

    积分

    注册会员

    积分
    141
    2018-2-6 13:17:00 | 显示全部楼层
    感谢楼主分享!



    回复

    使用道具 举报

    106

    主题

    370

    回帖

    1815

    积分

    金牌会员

    积分
    1815
    tl3821

    106

    主题

    370

    回帖

    1815

    积分

    金牌会员

    积分
    1815
    2018-2-6 13:20:23 | 显示全部楼层
    这是啥
    回复

    使用道具 举报

    55

    主题

    1586

    回帖

    4811

    积分

    论坛元老

    积分
    4811
    88232128

    55

    主题

    1586

    回帖

    4811

    积分

    论坛元老

    积分
    4811
    2018-2-6 13:24:48 | 显示全部楼层
    我就想问怎么支持nginx,这个程序好像只支持apache
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    Archiver|小黑屋|HS2V主机综合交流论坛

    GMT+8, 2025-4-22 15:31 , Processed in 0.023823 second(s), 4 queries , Gzip On, Redis On.

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

    快速回复 返回顶部 返回列表