2012最新电影网站源码(百度影音) 带自动采集 太强大了
广告位说明
-------------------------------------------------------------
{:get_cms_ads('index-96090')} 首页通栏广告位1 宽960 高90
{:get_cms_ads('index-96090-2')} 首页通栏广告位2 宽960 高90
{:get_cms_ads('right-250250')} 内容页右侧广告 宽250 高250
{:get_cms_ads('play-left')} 播放页左侧广告 宽160 高480
{:get_cms_ads('play-right')} 播放页右侧广告 宽160 高480
AJAX调用数据说明(容器ID),以达到在静态模式下数据实时更新等作用
-------------------------------------------------------------
video_channel.html video_list.html(栏目频道页,栏目列表页)
<dd id="areahtml">{$area}</dd> 出产地区列表
<dd id="yearhtml">{$year}</dd> 上映年代列表
video_detail.html(影视内容详情页)
<span id="Scorenum">{$score}</span> 影片评分值
<span id="Scoreer">{$scoreer}</span> 影片评分人数
<span id="hot_video" href="需引用的数据URL链接"></span> 同类热门推荐
<div id="Comments"></div> 调用影片评论插件
<div id="ckepop" class="jia">...</div> 社区分享插件(分享到博客)
video_play.html(影视播放页)
<span id="Score">{$score}</span> 影片评分操作效果(鼠标划过评分)
<span id="Scorenum">{$score}</span> 影片评分值
<span id="Scoreer">{$scoreer}</span> 影片评分人数
<span id="hot_video" href="需引用的数据URL链接"></span> 同类热门推荐
info_detail.html(文章内容页)
<span id="hot_info" href="需引用的数据URL链接">Loading...</span> 同类热门推荐
默认高亮CSS样式说明
-------------------------------------------------------------
.Year{} 当前年代筛选结果的关键字
.Letter{} 当前字母筛选结果的关键字
.Area{} 当前地区筛选结果的关键字
.Class{} 当前分类筛选结果的关键字
.kw-hilight{} 搜索结果关键字
{__NOTOKEN__}
{__TOKEN__}
IIS6伪静态规则(需安装rewrite2.x组件)
httpd.ini 已经写好,只需要您的主机支持即可(请将rewrite目录下的httpd.ini移动到根目录)
Apache伪静态规则(如果你的主机不支持,请删除该文件)
.htaccess 已经写好,只需要您的主机支持即可(请将rewrite目录下的.htaccess移动到根目录)
Nginx伪静态规则
rewrite ^(.*)/video/search/(.*)$ $1/index.php?s=video/search/$2;
rewrite ^(.*)/list/(.*)$ $1/index.php?s=video/lists/id/$2;
rewrite ^(.*)/movie/(.*)$ $1/index.php?s=video/detail/id/$2;
rewrite ^(.*)/player/(.*)$ $1/index.php?s=video/play/id/$2;
rewrite ^(.*)/info/search/(.*)$ $1/index.php?s=info/search/$2;
rewrite ^(.*)/newslist/(.*)$ $1/index.php?s=info/lists/id/$2;
rewrite ^(.*)/news/(.*)$ $1/index.php?s=info/detail/id/$2;
rewrite ^(.*)/special/(.*)$ $1/index.php?s=special/$2;
rewrite ^(.*)/guestbook/(.*)$ $1/index.php?s=guestbook/$2;
rewrite ^(.*)/top10/(.*)$ $1/index.php?s=top10/$2;
rewrite ^(.*)/my/(.*)$ $1/index.php?s=my/$2;
rewrite ^(.*)/map/lists/(.*)$ $1/index.php?s=map/lists/$2;
lighttpd的rewrite(伪静态)规则如下
url.rewrite-once = (
"^/video/search/(.+)$" => "index.php?s=video/search/$1",
"^/list/(.+)$" => "index.php?s=video/lists/id/$1",
"^/movie/(.+)$" => "index.php?s=video/detail/id/$1",
"^/player/(.+)$" => "index.php?s=video/play/id/$1",
"^/info/search/(.+)$" => "index.php?s=info/search/$1",
"^/newslist/(.+)$" => "index.php?s=info/lists/id/$1",
"^/news/(.+)$" => "index.php?s=info/detail/id/$1",
"^/special/(.+)$" => "index.php?s=/special/$1",
"^/guestbook/(.+)$" => "index.php?s=/guestbook/$1",
"^/top10/(.+)$" => "index.php?s=top10/$1",
"^/my/(.+)$" => "index.php?s=/my/$1",
"^/map/lists/(.+)$" => "index.php?s=map/lists/$1",
)
iis7用户请直接导航.htaccess或者将以下规则添加到web.config
<rewrite>
<rules>
<rule name="已导入的规则 1">
<match url="^video/search/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=video/search/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 2">
<match url="^info/search/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=info/search/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 3">
<match url="^list/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=video/lists/id/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 4">
<match url="^movie/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=video/detail/id/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 5">
<match url="^player/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=video/play/id/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 6">
<match url="^newslist/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=info/lists/id/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 7">
<match url="^news/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=info/detail/id/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 8">
<match url="^special/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=special/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 9">
<match url="^guestbook/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=guestbook/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 10">
<match url="^top10/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=top10/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 11">
<match url="^my/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=my/{R:1}" appendQueryString="false" />
</rule>
<rule name="已导入的规则 12">
<match url="^map/lists/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php\?s=map/lists/{R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
1、你们的源码安全完整吗?
答:源码超市提供各类建站资源下载,包括asp源码、php源码、net源码、商业网站源码、flash源码、VIP源码、精品源码、整站源码、极品源码、免费素材、网站模板、建站教程、站长咨询等,做最好的源码下载站!由瑞星杀毒、金山软件杀过,绝不含病毒。每个源码都经过工作人员反复测试、修改、破解、二次开发,保证完整可用,为您建站节省宝贵精力。
2、源码有问题不能用能退吗?
答:当然能,只要是源码的问题100%能退款,但如果是您的技术问题不会用则不接收退款,或者有些源码是需要稍加修改才能用的也不接收退款哦。每个网站源码都有详细的安装说明,源码下载过程中遇到问题可以直接联系左上角的客服QQ。
3、你们的源码怎么那么便宜?
答:源码超市的源码都是精品,所有VIP源码都是源码超市出资引进的,高价请人破解、再经过辛苦测试,现在只收会员几块钱测试费用,相对于淘宝拍拍动则几百上千的源码,源码超市的源码可以说是相当便宜了。您在淘宝上看到的几百几千的源码在源码超市可能只要几元钱。目前做活动,充值金币后自由下载所有源码。
4、购买源码后不会用怎么办?
答:源码超市中的源码主要分为:ASP、PHP、NET,对于每个ASP程序我们都为您配置了“yuanmachaoshi.com网站专用调试工具”,您只要点击该图标就可以打开网站;对于PHP程序,建议您下载APMserv进行本地测试;对于Net程序可能要相对麻烦一些,需要您安装软件配置本地的服务器环境,或者直接在您购买的空间上测试。
5、源码购买后可以换另一款吗?
答:源码超市每个源码都是经过反复测试,只有测试成功才发布,不存在源码不能用的情况。如果源码真的不能用,我们可以给您退款或者换另一款同等价值的源码。但是如果只是您的兴趣发生了变化,那我们是不接收退换的.您也应该知道,源码作为虚拟产品的特殊性。
6、你们通过什么方式发货?
答:所有源码、软件、教程等虚拟类产品均通过源码超市平台在线下载,只需要注册充值金币后即可下载任意资源。
7、获得源码超市精品源码的详细步骤?
答:第一是注册,第二是选择源码,第三是充值金币或升级会员,第四是进入下载地址列表下载源码,详细请看如何下载源码。
8、如何免费下载源码?
答:免费下载本站源码有两种方法,一是上传分享您的好源码获得金币,二是推广本站获得金币,注册后在会员中心查看具体方法。