本站所有内容仅限用于学习和研究目的,如有侵权请邮件与我们联系处理!
世上事本无难易,为之则易!

网站首页 网站源码 正文

米酷CMS7.0.2电影视频网站源码

曹操 2020-04-09 网站源码 2788 ℃ 9 评论 5248字 free 收藏

好像这款影视程序最近挺火,曹操也尝试搭建了一下。

非网上常见的单一一款米酷cms,而是经过筛选的三个版本,分别由三位网友赠送,这里就不提他们名字了。

米酷CMS7.0.2电影视频网站源码-第1张图片

安装教程

米酷7.0影视安装步骤+使用说明

①:以宝塔为例创建网站

②:配置伪静态规则

③:

将文件上传至虚拟空间或者服务器并解压

访问域名/install.php安装

安装完成后登陆(后台路径域名/admin)

账号密码都是admin

④:登陆后台后

设置网站信息将域名设置成你的域名并清理缓存

(关于接口这里就不推荐了,默认的接口可能都打不开的,如果长期做影视的话,可以考虑下付费接口)

⑤:如果mv和娱乐显示不完整的(给网站744权限)

或者采用以下方法以宝塔为例

软件商店-Linux工具箱-设置-dns修改为114.114.114.114先测试再保存

⑥-1:访问首页如果还提示安装请采用以下方法

进入install目录-新建一个inst.lock文件

文件内容随意保存以下即可(记得清理缓存)

Nginx伪静态

rewrite ^/index.html$ /index.php;
rewrite ^/app.html$ /app.php;
rewrite ^/mv.html$ /mv.php?ml=9&m=1;
rewrite ^/mv_([0-9]+)_([0-9]+).html$ /mv.php?ml=$1&m=$2;
rewrite ^/tv.html$ /tv.php;
rewrite ^/cx.html$ /cx.php;
rewrite ^/yy.html$ /yy.php;
rewrite ^/live.html$ /live.php;
rewrite ^/book.html$ /book.php;
rewrite ^/hall.html$ /hall.php;
rewrite ^/fuli.html$ /fuli.php;
rewrite ^/zhibo.html$ /zhibo.php;
rewrite ^/music.html$ /music.php;
rewrite ^/movie.html$ /movie.php;
rewrite ^/zongyi.html$ /zongyi.php;
rewrite ^/dongman.html$ /dongman.php;
rewrite ^/meipai.html$ /meipai.php;
rewrite ^/shop.html$ /shop.php;
rewrite ^/vod(.*)$ /play.php?play=$1;
rewrite ^/mvplay/(.*).html$ /mv.php?v=$1;
rewrite ^/cxplay/(.*).html$ /cxplay.php?id=$1;
rewrite ^/yplay/(.*).html$ /yplay.php?post=$1;
rewrite ^/movie_(.*)_(.*)_(.*)_(.*)_(.*)_(.*).html$ /movie.php?cat=$1&year=$2&area=$3&act=$4&rank=$5&pageno=$6;
rewrite ^/tv_(.*)_(.*)_(.*)_(.*)_(.*)_(.*).html$ /tv.php?cat=$1&year=$2&area=$3&act=$4&rank=$5&pageno=$6;
rewrite ^/dongman_(.*)_(.*)_(.*)_(.*)_(.*).html$ /dongman.php?cat=$1&year=$2&area=$3&rank=$4&pageno=$5;
rewrite ^/zongyi_(.*)_(.*)_(.*)_(.*)_(.*).html$ /zongyi.php?cat=$1&act=$2&area=$3&rank=$4&pageno=$5;
rewrite ^/gb_(.*).html$ /book.php?page=$1;
rewrite ^/cx_(.*)_([0-9]+).html$ /cx.php?cid=$1&page=$2;
rewrite ^/yy_(.*).html$ /yy.php?list=$1;
rewrite ^/star.html /star.php;
rewrite ^/mxstar_(.*)_(.*)_(.*).html /star.php?wd=$1&tab=$2&pageno=$3;
rewrite ^/seacher-(.*).html /seacher.php?wd=$1;
rewrite ^/mvseacher-(.*).html /mv.php?ac=$1;
rewrite ^/news.html$ /news.php;
rewrite ^/news_([0-9]+).html$ /news.php?page=$1;
rewrite ^/content-([0-9]+)-([0-9]+).html$ /content.php?dz=/$1/$2.shtml;
rewrite ^/shop_(.*)$ /shop.php?page=$1;

Apache伪静态

RewriteRuleEngine on
RewriteRule ^index.html$ index.php
RewriteRule ^app.html$ app.php
RewriteRule ^mv.html$ mv.php?ml=9&m=1
RewriteRule ^mv_([0-9]+)_([0-9]+).html$ mv.php?ml=$1&m=$2
RewriteRule ^tv.html$ tv.php
RewriteRule ^cx.html$ cx.php
RewriteRule ^yy.html$ yy.php
RewriteRule ^live.html$ live.php
RewriteRule ^book.html$ book.php
RewriteRule ^hall.html$ hall.php
RewriteRule ^fuli.html$ fuli.php
RewriteRule ^zhibo.html$ zhibo.php
RewriteRule ^music.html$ music.php
RewriteRule ^movie.html$ movie.php
RewriteRule ^zongyi.html$ zongyi.php
RewriteRule ^dongman.html$ dongman.php
RewriteRule ^meipai.html$ meipai.php
RewriteRule ^shop.html$ shop.php
RewriteRule ^vod(.*)$ play.php?play=$1
RewriteRule ^mvplay/(.*).html$ mv.php?v=$1
RewriteRule ^cxplay/(.*).html$ cxplay.php?id=$1
RewriteRule ^yplay/(.*).html$ yplay.php?post=$1
RewriteRule ^movie_(.*)_(.*)_(.*)_(.*)_(.*)_(.*).html$ movie.php?cat=$1&year=$2&area=$3&act=$4&rank=$5&pageno=$6
RewriteRule ^tv_(.*)_(.*)_(.*)_(.*)_(.*)_(.*).html$ tv.php?cat=$1&year=$2&area=$3&act=$4&rank=$5&pageno=$6
RewriteRule ^dongman_(.*)_(.*)_(.*)_(.*)_(.*).html$ dongman.php?cat=$1&year=$2&area=$3&rank=$4&pageno=$5
RewriteRule ^zongyi_(.*)_(.*)_(.*)_(.*)_(.*).html$ zongyi.php?cat=$1&act=$2&area=$3&rank=$4&pageno=$5
RewriteRule ^gb_(.*).html$ book.php?page=$1;
RewriteRule ^cx_(.*)_([0-9]+).html$ cx.php?cid=$1&page=$2
RewriteRule ^yy_(.*).html$ yy.php?list=$1
RewriteRule ^star.html /star.php
RewriteRule ^mxstar_(.*)_(.*)_(.*).html /star.php?wd=$1&tab=$2&pageno=$3
RewriteRule ^seacher-(.*).html /seacher.php?wd=$1
RewriteRule ^mvseacher-(.*).html /mv.php?ac=$1
RewriteRule ^news.html$ news.php
RewriteRule ^news_([0-9]+).html$ news.php?page=$1
RewriteRule ^content-([0-9]+)-([0-9]+).html$ content.php?dz=/$1/$2.shtml
RewriteRule ^shop_(.*)$ shop.php?page=$1

下载链接

隐藏内容
评论可见
前往评论

目录导航
  • 安装教程
      • Nginx伪静态
      • Apache伪静态
  • 下载链接

  • Tags:网站源码

    必看说明

    • 本站中所有被研究的素材与信息全部来源于互联网,版权争议与本站无关。
    • 本站文章或仅为文本内容原创,非程序原创。如有侵权、不妥之处,请联系站长第一时间删除。敬请谅解!
    • 本站所有内容严格遵守国家法律的条例,所有研究的算法技术均来源于搜索引擎公开默认允许用户研究使用的接口。
    • 阅读本文及获取资源前,请确保您已充分阅读并理解《访问曹操SEO网站需知:行为准则》。
    • 本站分享的任何工具、程序仅供学习参考编写架构,仅可在本地的虚拟机内断网测试,严禁联网运行或上传搭建!
    • 任何资源必须在下载后24个小时内,从电脑中彻底删除。不得传播或者用于其他任何用途!否则一切后果用户自负!
    • 转载请注明 : 文章转载自  曹操SEO 米酷CMS7.0.2电影视频网站源码
    • 本文标题:《米酷CMS7.0.2电影视频网站源码》
    • 本文链接:https://www.ccooc.cn/801.html

    已有9位网友发表了看法:

    • ae6666

      ae6666  评论于 [2023-05-10 15:37:43]  回复

      谢谢

    • nick

      nick  评论于 [2023-05-06 20:33:32]  回复

      看看

    • yasuo

      yasuo  评论于 [2021-12-05 02:44:04]  回复

      感谢曹操

    • 竹篾

      竹篾  评论于 [2020-05-14 19:16:37]  回复

      站长多拍这些源码就好了。

    • 竹篾

      竹篾  评论于 [2020-05-14 19:16:27]  回复

      站长多发一些这些有意思的圆满好了,我们都可以了解了解。

    • 访客

      访客  评论于 [2020-04-09 14:15:42]  回复

      老大可以多发一些这样有意思的源码。

    欢迎 发表评论:

    网站分类
    近期评论
    文章归档
    标签列表
    站点信息
    • 文章总数:2021
    • 页面总数:7
    • 分类总数:46
    • 标签总数:340
    • 评论总数:8877
    • 浏览总数:5158056