2012-07-23 V1.1
1.修复分类页中图片无法显示的链接错误问题
2.修复分类页中 选韩国电视剧 再选韩语后分类为空的问题
3.使用说明中增加了nginx,iis,apache的rewrite规则
4.在电影播放页面的模板p.html中 可以使用 {$playname} 作为电影名称进行SEO
5.在电影介绍页面的模板m.html中 可以使用 {$gettitle} 作为电影名称 进行SEO
6.从1.0升级无需替换已经部署好的内容。只需要替换2个文件即可 kkkk.php和class/kkkk_Controller.php
网站模板目录
template
└foot.html 页面公用底部
└head.html 页面公用头部
└index.html 首页模板
└list.html 分类页模板
└m.html 电影介绍页模板
└p.html 电影播放页模板
└search.html 搜索页面模板
广告内容请自行修改模板 添加 修改
pic 目录
wpic 目录
tmp 目录
class\tempcompile 目录
以上4个目录必须保证有写入权限 否则无法运行
/ 根目录内
└18025.jpg
└22040.jpg
请自行更换,请勿改变其图片尺寸和格式 2张图片是读取目标站后将图片增加水印
运行程序PHP必须5.0以上 CURL组件必须启用
假静态和动态请自行修改 run.php
把 define('KKKK_REWRITE', false); 改成 define('KKKK_REWRITE', true);
网站标题和关键字也在里面修改
播放加载前那个广告在 img\wdplay.js
演示站点:http://www.kkdsyy.com
nginx的重写规则
location / {
rewrite ^/index.html$ /index.php last;
rewrite ^/pic/(.*?)$ /index.php?action=pic&pid=$1 last;
rewrite ^/wpic/(.*?)$ /index.php?action=wpic&pid=$1 last;
rewrite ^/m/([0-9]+)/([0-9a-z]+)/$ /index.php?action=moive&cid=$1&n=$2 last;
rewrite ^/m/([0-9]+)/([0-9]+)_([0-9]+)_([0-9]+).html$ /index.php?action=play&cid=$1&aid=$2&p1=$3&p2=$4 last;
rewrite ^/m/([0-9]+)/$ /index.php?action=sort&cid=$1 last;
rewrite ^/m/([0-9]+)/index([0-9]+).html$ /index.php?action=sort&cid=$1&p=$2 last;
rewrite ^/m/([0-9]+)/index([0-9]+)_Y_([0-9]+).html$ /index.php?action=sort&cid=$1&p=$2&yy=$3 last;
rewrite ^/m/([0-9]+)/index([0-9]+)_T_([0-9]+).html$ /index.php?action=sort&cid=$1&p=$2&sj=$3 last;
rewrite ^/m/([0-9]+)/index([0-9]+)_M_([0-9]+).html$ /index.php?action=sort&cid=$1&p=$2&diqu=$3 last;
rewrite ^/m/([0-9]+)/index([0-9]+)_M_([0-9]+)_T_([0-9]+)_Y_([0-9+]).html$ /index.php?action=sort&cid=$1&p=$2&diqu=$3&sj=&4&yy=$5 last;
rewrite ^/m/([0-9]+)/index([0-9]+)_M_([0-9]+)_T_([0-9]+).html$ /index.php?action=sort&cid=$1&p=$2&diqu=$3&sj=$4 last;
rewrite ^/m/([0-9]+)/index([0-9]+)_M_([0-9]+)_Y_([0-9+]).html$ /index.php?action=sort&cid=$1&p=$2&diqu=$3&yy=$4 last;
rewrite ^/m/([0-9]+)/index([0-9]+)_T_([0-9]+)_Y_([0-9+]).html$ /index.php?action=sort&cid=$1&p=$2&sj=$3&yy=$4 last;
}
iis和apache的重写规则
RewriteRule ^(.*)/index.html$ $1/index.php [L]
RewriteRule ^(.*)/pic/(.*)$ $1/index.php?action=pic&pid=$2 [L]
RewriteRule ^(.*)/wpic/(.*)$ $1/index.php?action=wpic&pid=$2 [L]
RewriteRule ^(.*)/m/([0-9]+)/([0-9]+)_([0-9]+)_([0-9]+).html$ $1/index.php?action=play&cid=$2&aid=$3&p1=$4&p2=$5 [L]
RewriteRule ^(.*)/m/([0-9]+)/$ $1/index.php?action=sort&cid=$2 [L]
RewriteRule ^(.*)/m/([0-9]+)/([0-9a-zA-Z]+)/$ $1/index.php?action=moive&cid=$2&n=$3 [L]
RewriteRule ^(.*)/m/([0-9]+)/index([0-9]+).html$ $1/index.php?action=sort&cid=$2&p=$3 [L]
RewriteRule ^(.*)/m/([0-9]+)/index([0-9]+)_Y_([0-9]+).html$ $1/index.php?action=sort&cid=$2&p=$3&yy=$4 [L]
RewriteRule ^(.*)/m/([0-9]+)/index([0-9]+)_T_([0-9]+).html$ $1/index.php?action=sort&cid=$2&p=$3&sj=$4 [L]
RewriteRule ^(.*)/m/([0-9]+)/index([0-9]+)_M_([0-9]+).html$ $1/index.php?action=sort&cid=$2&p=$3&diqu=$4 [L]
RewriteRule ^(.*)/m/([0-9]+)/index([0-9]+)_M_([0-9]+)_T_([0-9]+)_Y_([0-9+]).html$ $1/index.php?action=sort&cid=$2&p=$3&diqu=$4&sj=&5&yy=$6 [L]
RewriteRule ^(.*)/m/([0-9]+)/index([0-9]+)_M_([0-9]+)_T_([0-9]+).html$ $1/index.php?action=sort&cid=$2&p=$3&diqu=$4&sj=$5 [L]
RewriteRule ^(.*)/m/([0-9]+)/index([0-9]+)_M_([0-9]+)_Y_([0-9+]).html$ $1/index.php?action=sort&cid=$2&p=$3&diqu=$4&yy=$5 [L]
RewriteRule ^(.*)/m/([0-9]+)/index([0-9]+)_T_([0-9]+)_Y_([0-9+]).html$ $1/index.php?action=sort&cid=$2&p=$3&sj=$4&yy=$5 [L]
程序维护:蓝色透明
QQ:64202200
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
PHP实例开发源码—kk php百度影音源码.zip (53个子文件)
132699567609774784
kkbdyy1.1
class
simple_html_dom.php 53KB
template.php 2KB
cache.php 5KB
template_class.php 17KB
template_debug.php 2KB
tempcompile
kkkk_Controller.php 8KB
index.php 112B
pic
img
sh_2.jpg 7KB
btt.gif 105B
ico_01.gif 104B
wdplay.js 11KB
ic_4.gif 115B
repeat.png 723B
repeat.gif 2KB
bdyy.gif 1KB
xnav.gif 2KB
ic_1.gif 115B
bg.png 2KB
ic_3.gif 115B
function.js 745B
ie.gif 340B
bg05.gif 625B
ic_2.gif 115B
soso.gif 100B
more.gif 58B
bylm.gif 139B
uuk.gif 68B
comm.css 10KB
ss.png 607B
img01.gif 625B
logo.png 9KB
Bg1.png 3KB
bg01.gif 550B
bb.gif 345B
list.css 8KB
run.php 2KB
wpic
js
bd.html 2KB
tudou.htm 2KB
ad
9602.jpg 40KB
300.jpg 47KB
9601.jpg 33KB
httpd.ini 1KB
tmp
22040.jpg 20KB
18035.jpg 17KB
使用说明.txt 4KB
template
head.html 2KB
foot.html 464B
search.html 1KB
index.html 4KB
m.html 1KB
list.html 4KB
p.html 2KB
kkkk.php 18KB
共 53 条
- 1
资源评论
易小侠
- 粉丝: 6592
- 资源: 9万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功