共计 5227 个字符,预计需要花费 14 分钟才能阅读完成。
杰奇 cms2.4 这个伪静态设置教程,相对于二次开发那些,这个确实是算简单的了。 只需要根据网上的 js 自己补充而已,但是相对于每个模板都配置一条跳转规则,我还是有个简单的办法,不过还是得配合已经设置好的伪静态。在这篇教程里,小编就简单说明一下杰奇 CMS 电脑和手机端两边的配置。
比较重要的页面主要是首页,书库,分类,小说信息,充值,目录,小说阅读,但是一般来说目录和小说阅读的头部是放置在单个文件中,不和其它页面共用。
假如:
电脑端网址为:pc.xx.com
手机端网址为:wap.xx.com
教程开始:
1、首先是 PC 端的修改
1. 在 PC 端的 /themes/ 目录中找到当前设置的模板,进入后找到 theme.html,在它的 head 标签对中加入如下代码:
<script type="text/javascript">
function browserRedirect() {
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if(bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM){
{?if $jieqi_thisfile|basename == 'articlefilter.php'?}
window.location.href = "http://wap.xx.com/modules/article/articlefilter.php";
{?else if $jieqi_thisfile|basename == 'articlelist.php'?}
window.location.href = "http://wap.xx.com/sort/{?$sortid?}/1.html";
{?else if $jieqi_thisfile|basename == 'buyegold.php'?}
window.location.href = "http://wap.xx.com/modules/pay/buyegold.php";
{?else if $jieqi_thisfile|basename == 'articleinfo.php'?}
window.location.href = "http://wap.xx.com/book/{?$articleid?}";
{?else?}
window.location.href = "http://wap.xx.com/";
{?/if?}
}
}
browserRedirect();
</script>
2. 目录页和章节页头部可能在 themer.html,也可能是 /modules/article/templates/ 里面的 style.html 和 index.html,同样是在 head 标签对加入如下代码。
<script type="text/javascript">
function browserRedirect() {
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if(bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM){
{?if $jieqi_thisfile|basename == 'reader.php'?}
window.location.href = "http://wap.xx.com/index/{?$articleid?}/1/asc";
{?else if $chapterid != ''?}
window.location.href = "http://wap.xx.com/book/{?$articleid?}/{?$chapterid?}.html";
{?else?}
window.location.href = "http://wap.xx.com/";
{?/if?}
}
}
browserRedirect();
</script>
2、然后是 WAP 端的修改:
1. 在 WAP 端的 /themes/ 目录中找到当前设置的模板,进入后找到 theme.html,在它的 head 标签对中加入如下代码:
<script>
if( navigator.userAgent.match(/Android/i)
|| navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)
){
}else{
{?if $jieqi_thisfile|basename == 'articlefilter.php'?}
window.location.href = "http://pc.xx.com/modules/article/articlefilter.php";
{?else if $jieqi_thisfile|basename == 'articlelist.php'?}
window.location.href = "http://pc.xx.com/sort/{?$sortid?}/1.html";
{?else if $jieqi_thisfile|basename == 'buyegold.php'?}
window.location.href = "http://pc.xx.com/modules/pay/buyegold.php";
{?else if $jieqi_thisfile|basename == 'articleinfo.php'?}
window.location.href = "http://pc.xx.com/book/{?$articleid?}";
{?else?}
window.location.href = "http://pc.xx.com/";
{?/if?}
}
</script>
2. 目录页和章节页和 pc 差不多相同,一样的逻辑,就是目录页面的细节不一样。
<script>
if( navigator.userAgent.match(/Android/i)
|| navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)
){
}else{
{?if $jieqi_thisfile|basename == 'reader.php'?}
window.location.href = "http://pc.xx.com/index/{?$articleid?}";
{?else if $chapterid != ''?}
window.location.href = "http://pc.xx.com/book/{?$articleid?}/{?$chapterid?}.html";
{?else?}
window.location.href = "http://pc.xx.com/";
{?/if?}
}
</script>
3、杰奇后台伪静态的设置
没写的自己按照格式写伪静态规则,或者不填。
小说信息页面伪静态规则:/book/<{$id}>
小说分类页面伪静态规则:/sort/<{$sortid}>/<{$page}>.html
排行榜页面伪静态规则:/top/<{$order}>/<{$page}>.html
书库伪静态规则:/book_<{$order}>_<{$rgroup}>_<{$sortid}>_<{$typeid}>_<{$words}>_<{$update}>_<{$initial}>_<{$isfull}>_<{$isvip}>_<{$page}>.html
小说目录页伪静态规则:/index/<{$aid}>
小说章节页伪静态规则:/book/<{$aid}>/<{$cid}>.html
搜索结果页伪静态规则:/search/<{$searchtype}>/<{$searchkey}>/<{$page}>.html
搜索结果页伪静态规则:/reviews/<{$aid}>/<{$page}>.html
标签列表页伪静态规则:/taglist/<{$sort}>/<{$page}>.html
apache 伪静态,在根目录创建.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^templates/(.*).html$ /404.php
RewriteRule ^themes/(.*)/(.*).html$ /404.php
RewriteRule ^modules/(.*)/templates/$ /404.php
RewriteRule ^modules/(.*)/templates/(.*).html$ /404.php
RewriteRule ^book/([0-9]+)$ /modules/article/articleinfo.php?id=$1