杰奇小说在线阅读
『壹』 求全职猎人奇杰或者杰奇小说,不要穿越的。
我们一起长大(奇杰)
奇犽PK奇犽(伊奇)
猫.奇犽.童话(三美奇)
穿成小杰勾搭蜘蛛头(团杰)
在我和天空之间
蝴蝶舞
猎人之绝爱
杰富力士新传
当小猫遇见狗狗
逆光
梦旅人
『贰』 求全职猎人【杰奇】同人BL小说
网络下载嘛
『叁』 关关“杰奇小说全站伪静态教程,手把手交你全站伪静态!”这个贴子出现的问题,求解。
杰奇小说系统1.7目录页和阅读页伪静态,它需要修改大量的模板文件,所以它也是全站伪静态最难的地方,现将自己实现的方法提供给大家,希望对你有所帮助!
一、首先在后台设置伪静态加入代码:
1、文章信息页面伪静态规则:/book/<{$id}>.html
2、文章分类页面伪静态规则:/list/<{$class}>_<{$page}>.html
3、首字母分类页面伪静态规则:/zm/<{$initial}>_<{$page}>.html
4、排行榜页面伪静态规则:/top/<{$sort}>_<{$page}>.html
二、首先在rewrite加载的http.ini中设置代码如(加载后记得重启IIS):
[ISAPI_Rewrite]
RewriteCond Host: (.+)
RewriteCond Referer: (?!http://\1.*).*
RewriteCond Referer: (?!http://(?:.*\.\.com|\.com)).+
RewriteRule .*\.(?:gif|jpg|png|exe|rar|zip|torrent|bmp|pdf) /block.gif
[I,O,N]
#以下为目录页,阅读页设置
RewriteRule ^/book([0-9]+)\.html$
/moles/article/reader\.php\?aid=$1
RewriteRule
^/book([0-9]+)_([0-9]+)\.html$ /moles/article/reader\.php\?aid=$1&cid=$2
#以下为信息页,分类页,排行,字母排行页设置
RewriteRule ^/book/([0-9]+)\.html$
/moles/article/articleinfo\.php\?id=$1
RewriteRule#
^/list/([0-9]+)_([0-9]+)\.html$ /moles/article/articlelist\.php\?class=$1
RewriteRule ^/zm/([a-z]+)_([0-9]+)\.html
/moles/article/toplist\.php\?sort=$1
RewriteRule
^/top/initial([01A-Z])-([0-9]+)\.html$
/moles/article/articlelist.php?initial=$1
三、然后修改
moles\article\templates\articleinfo.html
1、“点击阅读”的地址(目录页地址)代码变为:
/book{?$articleid?}.html
2、链接内容页地址代码变为:
/book{?$articleid?}_{?$lastchapterid?}.html
3、修改
moles\article\templates\index.html
<a
href=http://你的网址/"/book{?$articleid?}_{?$indexrows.cid1?}.html">
<a
href=http://你的网址/"/book{?$articleid?}_{?$indexrows.cid2?}.html">
<a
href=http://你的网址/"/book{?$articleid?}_{?$indexrows.cid3?}.html">
<a
href=http://你的网址/"/book{?$articleid?}_{?$indexrows.cid4?}.html">
四、修改
moles\article\templates\style.html
1、将
<script
type="text/javascript">
<!–
var preview_page =
"{?$preview_page?}";
var next_page = "{?$next_page?}";
var index_page =
"{?$index_page?}";
var article_id = "{?$article_id?}";
var chapter_id =
"{?$chapter_id?}";
function jumpPage() {
if (event.keyCode==37)
location=preview_page;
if (event.keyCode==39) location=next_page;
if
(event.keyCode==13) location=index_page;
}
替换成:
<script
type="text/javascript">
<!–
var str = "{?$preview_page?}";
if(str.getQuery("cid"))
{
preview_page
="/book{?$article_id?}_"+str.getQuery("cid")+".html"
}
else
{
preview_page ="/book{?$article_id?}.html"
}
var str =
"{?$next_page?}";
if(str.getQuery("cid"))
{
next_page
="/book{?$article_id?}_"+str.getQuery("cid")+".html"
}
else
{
next_page ="/book{?$article_id?}.html"
}
var index_page =
"/book{?$articleid?}.html";
var article_id = "{?$article_id?}";
var
chapter_id = "{?$chapter_id?}";
function jumpPage() {
if
(event.keyCode==37) location=preview_page;
if (event.keyCode==39)
location=next_page;
if (event.keyCode==13) location=index_page;
}
document.onkeydown=jumpPage;
–>
</script>
2、继续将
<a href=http://blog.soso.com/qz.q/"{?$preview_page?}"><font
color="#0033FF">上一页</font></a>
替换成:
<!– 上一页 –>
<script type="text/javascript"><!–
var str =
"{?$preview_page?}";
if(str.getQuery("cid"))
{
document.write("<a
href=http://blog.soso.com/book{?$article_id?}_"+str.getQuery("cid")+".html>上一章</a>");
}
else
{
document.write("<a class=’btnlink’
href=http://blog.soso.com/qz.q/book/{?$article_id?}.html
title=’返回{?$article_title?}
介绍’>返回书页</a>");
}
//–>
</script>
3、将
<a
href=http://blog.soso.com/qz.q/"{?$index_page?}"><font
color="#0033FF">返回目录</font></a>
换成:
<!– 返回目录–>
<a
href=http://blog.soso.com/qz.q/"/book{?$articleid?}.html">目录</a>
4、将
<a href=http://blog.soso.com/qz.q/"{?$next_page?}"><font
color="#0033FF">下一页</font></a>
换成:
<!– 下一页 –>
<script type="text/javascript">
<!–
var str =
"{?$next_page?}";
if(str.getQuery("cid"))
{
document.write("<a
href=http://blog.soso.com/book{?$article_id?}_"+str.getQuery("cid")+".html>下一章</a>");
}
else
{
document.write("<a class=’btnlink’
href=http://blog.soso.com/qz.q/book/{?$article_id?}.html
title=’返回{?$article_title?}
介绍’>返回书页</a>");
}
//–>
</script>
5、最后修改/scripts/common.js
最下面加:
String.prototype.getQuery = function(name)
{
var reg = new
RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
var r =
this.substr(this.indexOf("\?")+1).match(reg);
if (r!=null) return (r[2]);
return null;
}
五、修改对应的模块文件:
1、链接信息页调用:
将
{?$articlerows.url_articleinfo?}
修改成:
/book{?$articlerows.articleid?}.html
2、链接目录页调用:
将
{?$articlerows.url_articleindex?}
修改成:
/book{?$articlerows.articleid?}.html
3、链接内容页调用:
将
{?$articlerows.url_lastchapter?}
等修改成
/book{?$articlerows.articleid?}_{?$articlerows.lastchapterid?}.html
『肆』 杰奇小说系统各版本有什么区别
名字好听而已,网上破解很多,以前就用豪华版。
『伍』 杰奇把电脑里的小说导入后台
77.三秋小说网 .在线可全文阅读记得采纳哦,亲。
『陆』 杰奇小说手机版:Warning: Invalid argument supplied for foreach() in D:\www\index.php on line 9
php的warning错误可以忽略的
修改下php.ini 找到display_error 改为 Off
『柒』 有没有哪个网站上有好看的杰奇小说模板
杰奇模板到处都是,自己网上搜 一大堆,不过我知道有个网站很多好看的模板,自己去搜爱尚资源网 超多杰奇模板和其他模板
『捌』 杰奇小说系统,在线充值怎么设置啊
杰奇是加密的,貌似目前没听说过有人做支付接口对接成功的。 据个人研究,目前可能有这几种解决方式。 1、与dz整合,杰奇所有会员资料都使用dz的,利用dz的支付接口完成充值; 2、修改杰奇的邮局汇款页面,然后会员直接直接把钱转入指定的银行卡、支付宝、财付通或者其它收款帐号。(这个本人修改成功了,不过缺点是必须手工给充值用户加款。) 3、利用支付宝收款功能,这个是2的延伸。
麻烦采纳,谢谢!
『玖』 杰奇小说,文章信息页面title设置问题。
title,也就是标题,一般方便用户了解这个页面的内容,这里就是判定你网页内容的主要根据。
1.首页title写法:首页的title写法格式一般是“总标题-关键词”。
2.栏目页title写法:栏目页title的写法有两种,关键词名称命名写法是“栏目名称-总名称”,非关键词命名写法是:“栏目名称 栏目关键词-总名称”。
3.分类列表页的title写法:用关键词为这个栏目起名,然后按照下列顺序填写便可了“分类列表页名称-栏目名称-总名称”。
『拾』 杰奇小说网站,被人刷搜索怎么办
中间是搜索内容吗?显示出来应该是有截断没有全部显示吧?
看内容有点像在入侵