織夢DEDECMS全站偽靜態(tài)(電腦+手機移動){pinyin}拼音版

此教程適合需要把文章標題URL拼音化朋友們,也就是文章命名為{pinyin},如果你的文章是{aid} 文章ID的命名,請查看自由化目錄偽靜態(tài)規(guī)則配置

做好偽靜態(tài)以后,文章名稱就是拼音的了

電腦端訪問的URL地址類似效果如下

新聞列表頁? http://www.123.com/xinwenzixun/
新聞列表分頁 http://www.123.com/xinwenzixun/list_9_1.html
內(nèi)容頁??? http://www.123.com/xinwenzixun/weijingtaiceshi.html
內(nèi)容頁分頁? http://www.123.com/xinwenzixun/weijingtaiceshi_2.html
TAG標簽頁? http://www.123.com/tags/手機/
TAG標簽分頁 http://www.123.com/tags/手機/2/
搜索頁??? http://www.123.com/search/手機.html
搜索頁分頁? http://www.123.com/search/手機-2.html

手機端訪問的URL地址類似效果如下

新聞列表頁? http://m.123.com/xinwenzixun/
新聞列表分頁 http://m.123.com/xinwenzixun/list_9_1.html
內(nèi)容頁??? http://m.123.com/xinwenzixun/weijingtaiceshi.html
內(nèi)容頁分頁? http://m.123.com/xinwenzixun/weijingtaiceshi_2.html
TAG標簽頁? http://m.123.com/tags/手機/
TAG標簽分頁 http://m.123.com/tags/手機/2/
搜索頁??? http://m.123.com/search/手機.html
搜索頁分頁? http://m.123.com/search/手機-2.html

下面,我們就開始設(shè)置偽靜態(tài)了

第一步,后臺設(shè)置

1、安裝織夢全站動態(tài)靜態(tài)插件

下載后,根據(jù)你的網(wǎng)站編碼安裝相應(yīng)插件,安裝完成后,把全站設(shè)置為動態(tài)

2、后臺開啟偽靜態(tài)

系統(tǒng)基本參數(shù)-核心參數(shù)里面開啟偽靜態(tài),

內(nèi)容啟用絕對網(wǎng)址改成“否”

3、后臺設(shè)置欄目文章命名規(guī)則為拼音{pinyin},如果是新站,欄目少,手動修改就行了,如果 已經(jīng)有很多欄目了,不想一個個欄目設(shè)置的話,可以用SQL批量設(shè)置所有欄目

UPDATE `#@__arctype` SET `namerule` = '{typedir}/{pinyin}.html';

4、在數(shù)據(jù)庫文檔數(shù)據(jù)表是加入拼音字段,后臺-系統(tǒng)-SQL命令行工具,執(zhí)行下列代碼

ALTER TABLE `#@__archives` ADD `pinyin` VARCHAR( 255 ) NOT NULL DEFAULT '';

5、把文檔數(shù)據(jù)表已有數(shù)據(jù)的拼音字段生成拼音,在網(wǎng)站根目錄下新建一個PHP文件,內(nèi)容如下:

<?php
require_once (dirname(__FILE__) . "/include/common.inc.php");
$dsql->SetQuery("SELECT id,title FROM `#@__archives`");
$dsql->Execute('c');
while($row = $dsql->GetObject('c'))
{
	$pinyin = GetPinyin($row->title);
	$dsql->ExecuteNoneQuery("UPDATE `#@__archives` SET pinyin='{$pinyin}' WHERE id='{$row->id}'");
}
ShowMsg("完成","javascript:;");
exit();

我命名為1.php,然后在瀏覽器里面執(zhí)行這個文件,執(zhí)行完成后,刪除。如果你的站沒內(nèi)容,全新設(shè)置,這一步可以忽略。

6、修改后臺文件讓以后編輯和添加文檔自動生成拼音{pinyin}到拼音字段,打開 /dede/inc/inc_archives_functions.php ,搜索

global $envs, $typeid;

大約在398行,在它下面加入

global $dsql;

搜索

$arc = new Archives($aid);

402,行在它下面加入

$pinyin = GetPinyin($arc->Fields['title']);
$dsql->ExecuteNoneQuery("Update `#@__archives` set pinyin='{$pinyin}' where id='{$aid}'");

紅框里即是加入的代碼

第二步,電腦版?zhèn)戊o態(tài)教程開始,修改程序文件

1、列表頁和內(nèi)容頁偽靜態(tài)鏈接

打開 /plus/list.php 搜索

$tid = (isset($tid) && is_numeric($tid) ? $tid : 0);

大約在16行,把它修改為:

if($cfg_rewrite == 'Y')
{
    if(!is_numeric($tid))
    {
        $typedir = parse_url($tid, PHP_URL_PATH);
        $PageNo = stripos(GetCurUrl(), '.html') ? intval(str_replace('.html', '', end(explode("_", GetCurUrl())))) : 1;
        $tinfos = $dsql->GetOne("SELECT * FROM `#@__arctype` WHERE typedir='/$typedir' or typedir='{cmspath}/$typedir'");

        if(is_array($tinfos))
        {
            $tid = $tinfos['id'];
            $typeid = GetSonIds($tid);
            $row = $dsql->GetOne("Select count(id) as total From `#@__archives` where typeid in({$typeid})");
        }
        else
        {
            $tid = 0;
        }
    }
}
else
{
	$tid = (isset($tid) && is_numeric($tid) ? $tid : 0);
}

打開 /plus/view.php 搜索

$t1 = ExecTime();

大約在19行,在它下面加入

if($cfg_rewrite == 'Y')
{
	$aid = stripos(GetCurUrl(), '.html') ? str_replace('.html', '', end(explode("/", GetCurUrl()))) : 0;
	$row = $dsql->GetOne("SELECT id FROM `#@__archives` WHERE pinyin='$aid'");
	$aid = $row['id'];
}

打開 /include/arc.listview.class.php 搜索

//獲得上一頁和下一頁的鏈接

大約在1136行,在它上面加入

if($cfg_rewrite == 'Y')
{
	$purl = "";
}
else
{
	$geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&";
	$purl .= '?'.$geturl;
}

繼續(xù)搜索

$plist = str_replace('.php?tid=', '-', $plist);

在它上面加入

$tnamerule = $this->GetMakeFileRule($this->Fields['id'],"list",$this->Fields['typedir'],$this->Fields['defaultname'],$this->Fields['namerule2']);
$tnamerule = preg_replace("/^(.*)\//", '', $tnamerule);
$plist = preg_replace("/PageNo=(\d+)/i",str_replace("{page}","\\1",$tnamerule),$plist);

打開 /include/helpers/channelunit.helper.php,搜索

global $cfg_typedir_df;

修改為:

global $cfg_typedir_df, $cfg_rewrite;

繼續(xù)搜索

$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;

修改為:

if($cfg_rewrite == 'Y')
{
    $reurl = $typedir.'/';
}
else
{
    //動態(tài)
    $reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;
}

繼續(xù)搜索

return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html';

修改為

$articleDir = MfTypedir($typedir);
$articleRule = strtolower($namerule);
if($articleRule=='')
{
	$articleRule = strtolower($GLOBALS['cfg_df_namerule']);
}
if($typedir=='')
{
	$articleDir  = $GLOBALS['cfg_cmspath'].$GLOBALS['cfg_arcdir'];
}
$dtime = GetDateMk($timetag);
list($y, $m, $d) = explode('-', $dtime);
$arr_rpsource = array('{typedir}','{y}','{m}','048jcw27883r','{timestamp}','{aid}','{cc}');
$arr_rpvalues = array($articleDir,$y, $m, $d, $timetag, $aid, dd2char($m.$d.$aid.$y));
if($filename != '')
{
	$articleRule = dirname($articleRule).'/'.$filename.$GLOBALS['cfg_df_ext'];
}
$articleRule = str_replace($arr_rpsource,$arr_rpvalues,$articleRule);
if(preg_match("/\{p/", $articleRule))
{
	$articleRule = str_replace('{pinyin}',GetPinyin($title),$articleRule);
	$articleRule = str_replace('{py}',GetPinyin($title,1).'_'.$aid,$articleRule);
}
$articleUrl = '/'.preg_replace("/^\//", '', $articleRule);
if(preg_match("/index\.html/", $articleUrl) && $cfg_arc_dirname=='Y')
{
	$articleUrl = str_replace('index.html', '', $articleUrl);
}
return $articleUrl;

2、TAG標簽偽靜態(tài)鏈接

打開 /include/taglib/tag.lib.php 搜索

$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";

修改為

$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword'])."/";

3、TAG標簽分頁偽靜態(tài)鏈接

打開 /include/arc.taglist.class.php 搜索

$this->PageNo = $GLOBALS['PageNo'];

在它下面加入

if($this->PageNo == 0)
{
    $this->PageNo = 1;
}

繼續(xù)搜索

$prepage="";

在它上面加入

global $cfg_rewrite;

繼續(xù)搜索

$purl .= "?/".urlencode($this->Tag);

修改為

if($cfg_rewrite == 'Y')
{
    $purl = "/tags/".urlencode($this->Tag);
}
else
{
    $purl .= "?/".urlencode($this->Tag);
}

4、搜索頁偽靜態(tài)鏈接

打開 /plus/search.php 搜索

$mid = (isset($mid) && is_numeric($mid)) ? $mid : 0;

在它下面加入

if ( $mobile==1 )
{
    define('DEDEMOB', 'Y');
}

繼續(xù)搜索

$t1 = ExecTime();

在它下面加入

$keyword = preg_replace("/-(\d+)/i",'',$keyword);
$oldkeyword = preg_replace("/-(\d+)/i",'',$oldkeyword);

打開 /include/arc.searchview.class.php 搜索

global $oldkeyword;

修改為

global $oldkeyword, $cfg_rewrite;

繼續(xù)搜索

$purl .= "?".$geturl;

修改為

if($cfg_rewrite != 'Y' && !defined('DEDEMOB'))
{
    $purl .= "?".$geturl;
}
else
{
    $purl = '/search/'.urlencode($oldkeyword);
}

繼續(xù)搜索

return $plist;

修改為

if($cfg_rewrite == 'Y')
{
	$plist = preg_replace("/PageNo=(\d+)/i",'-\\1.html',$plist);
}
return $plist;

電腦版模板里把搜索框代碼改成靜態(tài)的js提交搜索,參考下面代碼,注意標紅的地方

<script type="text/javascript">
function search()
{
    var q = document.getElementById("q").value;
    window.location.;
}
function enterIn(obj,evt)
{
    var evt = evt ? evt : (window.event ? window.event : null);
    if (evt.keyCode == 13)
    {
        var q = obj.value;
        window.location.;
    }
}
</script>

<form?action=""?method="post"?onsubmit="return false">
<div class="form">
<h4>搜索</h4>
<input?name="q" id="q"?onkeydown="enterIn(this,event);"?type="text" />
<button type="submit" class="search-submit"?onclick="search()">搜索</button>
</div>
</form>

第三步、手機版?zhèn)戊o態(tài)教程

1、移動版域名 m.123.com 解析并指向和綁定目錄到網(wǎng)站目錄的m文件夾

2、后臺-系統(tǒng)配置 添加變量

變量名稱:cfg_mobile
變量類型:文本
參數(shù)說明:手機版網(wǎng)址
變量值:http://m.123.com
所屬組:站點設(shè)置

變量名稱:cfg_rewritem
變量類型:布爾(Y/N)
參數(shù)說明:手機版?zhèn)戊o態(tài)
變量值:Y
所屬組:站點設(shè)置

添加好后如下:

3、移動版當前位置 {dede:field.position/} 標簽動態(tài)改成偽靜態(tài)

打開 /include/typelink.class.php 搜索

$indexpage = "<a href='index.php'>".$this->indexName."</a>";

修改為:

if($GLOBALS['cfg_rewritem'] == 'Y')
{
	$indexpage = "<a href='".$GLOBALS['cfg_mobile']."'>".$this->indexName."</a>";
}
else
{
	$indexpage = "<a href='index.php'>".$this->indexName."</a>";
}

繼續(xù)搜索

return 'list.php?tid='.$typeinfos['id'];

修改為

if($GLOBALS['cfg_rewritem'] == 'Y')
{
	return GetTypeUrl($typeinfos['id'],MfTypedir($typeinfos['typedir']),$typeinfos['isdefault'],$typeinfos['defaultname'],$typeinfos['ispart'],$typeinfos['namerule2'],$typeinfos['moresite'],$typeinfos['siteurl'],$typeinfos['sitepath']);
}
else
{
	return 'list.php?tid='.$typeinfos['id'];
}

4、m文件夾文件添加和替換

下載后覆蓋
網(wǎng)盤下載 密碼: 1kap

本地下載:

5、把所有移動版模板文件(_m.htm 結(jié)尾的)里面的代碼都改成電腦版

請參考下面修改

css、js、images 改成絕對路徑,例如 assets/css/?改成?/assets/css/

index.php?改成?{dede:global.cfg_mobile/}

list.php?tid=[field:id/]?改成?[field:typelink/]

list.php?tid=~id~?改成?~typelink~

list.php?tid={dede:field name='id'/}?改成?{dede:field.typeurl/}

view.php?aid=[field:id/]?改成?[field:arcurl/]

[field:litpic/]?改成?[field:global.cfg_basehost/][field:litpic/]

[field:image/]?改成?<img src="[field:global.cfg_basehost/][field:litpic/]">

上一頁標簽?{dede:prenext get='pre'/}

改成

{dede:prenext get=pre runphp=yes}
$preurl = @me;
preg_match('/aid=(d*)/',$preurl,$match);
$result = GetOneArchive($match[1]);
@me = !empty($result) ? "上一篇:<a href="/m{$result['arcurl']}">{$result['title']}</a>" : "上一篇:沒有了";
{/dede:prenext}

下一頁標簽?{dede:prenext get='next'/}

改成

{dede:prenext get=next runphp=yes}
$preurl = @me;
preg_match('/aid=(d*)/',$preurl,$match);
$result = GetOneArchive($match[1]);
@me = !empty($result) ? "下一篇:<a href="/m{$result['arcurl']}">{$result['title']}</a>" : "下一篇:沒有了";
{/dede:prenext}

文章內(nèi)容?{dede:field.body/} 改成

{dede:field.body runphp=yes}
global $cfg_basehost;
$str = @me;
$search = '/(<img.*?)width=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is';
$search1 = '/(<img.*?)height=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is';
$search2 = '#(<img.*?style=".*?)width:\d+px;([^"]*?.*?>)#i';
$search3 = '#(<img.*?style=".*?)height:\d+px;([^"]*?.*?>)#i';
$content = preg_replace($search,'$1$3',$str);
$content = preg_replace($search1,'$1$3',$content);
$content = preg_replace($search2,'$1$2',$content);
$content = preg_replace($search3,'$1$2',$content);
@me = $content;
@me = str_replace('/uploads/allimg/', $cfg_basehost.'/uploads/allimg/', $content);
{/dede:field.body}

 

欄目內(nèi)容?{dede:field.content/}

改成

{dede:field.content runphp=yes}
global $cfg_basehost;
$str = @me;
$search = '/(<img.*?)width=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is';
$search1 = '/(<img.*?)height=(["\'])?.*?(?(2)\2|\s)([^>]+>)/is';
$search2 = '#(<img.*?style=".*?)width:\d+px;([^"]*?.*?>)#i';
$search3 = '#(<img.*?style=".*?)height:\d+px;([^"]*?.*?>)#i';
$content = preg_replace($search,'$1$3',$str);
$content = preg_replace($search1,'$1$3',$content);
$content = preg_replace($search2,'$1$2',$content);
$content = preg_replace($search3,'$1$2',$content);
@me = $content;
@me = str_replace('/uploads/allimg/', $cfg_basehost.'/uploads/allimg/', $content);
{/dede:field.content}

 

搜索框代碼改成靜態(tài)的js提交搜索,參考下面代碼,注意標紅的地方

<script type="text/javascript">
function?search()
{
var q = document.getElementById("q").value;
window.location.href = "http://m.123.com/search/"+q+".html";
}
function enterIn(obj,evt)
{
var evt = evt ? evt : (window.event ? window.event : null);
if (evt.keyCode == 13)
{
var q = obj.value;
window.location.href = "http://m.123.com/search/"+q+".html";
}
}
</script>
<form?action=""?method="post"?onsubmit="return false">
<div class="form">
<h4>搜索</h4>
<input?name="q" id="q"?onkeydown="enterIn(this,event);"?type="text" />
<button type="submit" class="search-submit"?onclick="search()">搜索</button>
</div>
</form>

電腦端跳轉(zhuǎn)移動端代碼:

首頁

<meta http-equiv="mobile-agent" content="format=xhtml;url={dede:global.cfg_mobile/}">
<script type="text/javascript">if(window.location.toString().indexOf('pref=padindex') != -1){}else{if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))){if(window.location.href.indexOf("?mobile")<0){try{if(/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){window.location.href="{dede:global.cfg_mobile/}";}else if(/iPad/i.test(navigator.userAgent)){}else{}}catch(e){}}}}</script>

列表表

<meta http-equiv="mobile-agent" content="format=xhtml;url={dede:global.cfg_mobile/}{dede:type}[field:typeurl/]{/dede:type}">
<script type="text/javascript">if(window.location.toString().indexOf('pref=padindex') != -1){}else{if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))){if(window.location.href.indexOf("?mobile")<0){try{if(/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){window.location.href="{dede:global.cfg_mobile/}{dede:type}[field:typeurl/]{/dede:type}";}else if(/iPad/i.test(navigator.userAgent)){}else{}}catch(e){}}}}</script>

內(nèi)容頁

<meta http-equiv="mobile-agent" content="format=xhtml;url={dede:global.cfg_mobile/}{dede:field.id runphp=yes}$result=GetOneArchive(@me);@me=$result['arcurl'];{/dede:field.id}">
<script type="text/javascript">if(window.location.toString().indexOf('pref=padindex') != -1){}else{if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))){if(window.location.href.indexOf("?mobile")<0){try{if(/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){window.location.href="{dede:global.cfg_mobile/}{dede:field.id runphp=yes}$result=GetOneArchive(@me);@me=$result['arcurl'];{/dede:field.id}";}else if(/iPad/i.test(navigator.userAgent)){}else{}}catch(e){}}}}</script>

 

織夢電腦版+手機版?zhèn)戊o態(tài)規(guī)則-自由拼音版下載
網(wǎng)盤下載 密碼: nrdk

本地下載

補充

1、設(shè)置全站偽靜態(tài)后,登錄后臺時,必須在地址欄補加上index.php,例如:http://www.123.com/dede/index.php,否則會提示Request Error!錯誤。如果你登錄不想加index.php或者某個文件夾想排除的朋友,可以在欄目列表偽靜態(tài)規(guī)則前面加個排除目錄,排除后臺目錄不使用偽靜態(tài)

#列表欄目
RewriteRule ^(?!dede|m|admin)(.*)/$ /plus/list.php?tid=$1

2、我在本地IIS測試時發(fā)現(xiàn)搜索偽靜態(tài)顯示錯誤:Request Error!,原來是有個BUG,文章的偽靜態(tài)規(guī)則和搜索的規(guī)則有沖突,解決方法就是把搜索的偽靜態(tài)規(guī)則放到文章偽靜態(tài)規(guī)則前面并在后面加上加[L]就解決了。

 

THE END
亚洲中文色欧另类欧美,久久久久久久激情,亚洲 日韩 欧美 另类 国产,中文字幕高清无码男人的天堂 www.sucaiwu.net