織夢(mèng)(DEDECMS)列表頁(yè),內(nèi)容頁(yè)IIS710偽靜態(tài)設(shè)置,親測(cè)有效

本教程只設(shè)置列表頁(yè),內(nèi)容頁(yè),TAGS頁(yè)的偽靜態(tài),其他搜索頁(yè)之類的,太麻煩,水平有限,所以就不測(cè)試了。網(wǎng)站運(yùn)行環(huán)境 IIS7(10)+PHP+MYSQL,織夢(mèng)版本:dedecms v5.7。

1.你的運(yùn)行環(huán)境必須支持偽靜態(tài),自動(dòng)百度:IIS URL重寫模塊,下載后安裝。

QQ截圖20170509165044

2.修改后臺(tái)設(shè)置

a.后臺(tái)-系統(tǒng)參數(shù)-核心設(shè)置-是否使用偽靜態(tài):選擇“是”;

b.后臺(tái)-系統(tǒng)-SQL命令行工具中執(zhí)行如下語(yǔ)句:

update dede_arctype set isdefault=-1;
update dede_archives set ismake=-1;

c.修改后臺(tái)模板文件:\dede\templets\article_add.htm,有兩個(gè)地方要修改。把默認(rèn)的“生成生成HTML”選擇狀態(tài)去掉,選中“僅動(dòng)態(tài)瀏覽”。修改方法:搜索“發(fā)布選項(xiàng)”,在下面

第一段代碼:<input name="ishtml" type="radio" class="np" value="1" checked="1" />把黃色的刪除,修改后為
<input name="ishtml" type="radio" class="np" value="1" />
第二段代碼<input name="ishtml" type="radio" class="np" value="0"/>在后面添加:checked="checked",添加后如下:
 <input name="ishtml" type="radio" class="np" value="0" checked="checked"/>

d.把站點(diǎn)根目錄下index.html刪除,以后不更新主頁(yè)HTML即可,當(dāng)然你也可以選擇不使用動(dòng)態(tài)首頁(yè);

3修改程序文件:

a.打開(kāi):/include/helpers/channelunit.helper.php

搜索:

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

替換為:

return "/archives/view-".$aid.'-1.html';

這個(gè)是將文章頁(yè)默認(rèn)的/plus/view-1-1.html鏈接格式改為/archives/view-1-1.html ,你也可以把a(bǔ)rchives改成其他名字。這里我用的是archives,這里如果修改了,下面的規(guī)則里面也要修改成你自己的名字

搜索:

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

替換為:

$reurl = "/category/list-".$typeid.".html";

這是里讓你的頻道或是列表頁(yè)URL變更為/category/list-1.html形式。category你也可修改成其他名字。

b.修改列表頁(yè)分頁(yè),打開(kāi)/include/arc.listview.class.php

搜索

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

替換成:

$plist = str_replace('plus', 'category', $plist);//將默認(rèn)的plus替換成category
$plist = str_replace('.php?tid=', '-', $plist); 

這里是修改列表頁(yè)分頁(yè)的

c.修改文章分頁(yè)

打開(kāi)/include/arc.archives.class.php,找到獲取動(dòng)態(tài)的分頁(yè)列表GetPagebreakDM()函數(shù)末尾片:

$PageList = str_replace(".php?aid=","-",$PageList);

替換為

$plist = str_replace('plus', 'archives', $plist);//將默認(rèn)的plus替換成archives
$PageList = str_replace(".php?aid=","-",$PageList);

 

d.打開(kāi)/include/taglib/tag.lib.php

查找:

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

替換為:

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

這里是修改TGA標(biāo)簽偽靜態(tài)的.

打開(kāi)\templets\default\taglist.htm,把里面的TAG標(biāo)簽鏈接地址/tgas.php修改為/tags.html

 

4.偽靜態(tài)規(guī)則:把下面代碼另存為web.config,放到網(wǎng)站根目錄下即可。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
			    <rule name="首頁(yè)">
                    <match url="^index.html$" ignoreCase="false" />
                    <action type="Rewrite" url="index.php" appendQueryString="false" />
                </rule>
                <rule name="列表頁(yè)">
                    <match url="category/list-([0-9]+).html" ignoreCase="false" />
                    <action type="Rewrite" url="/plus/list.php?tid={R:1}" appendQueryString="false" />
                </rule>
                <rule name="列表分頁(yè)">
                    <match url="^category/list-([0-9]+)-([0-9]+)-([0-9]+).html$" ignoreCase="false" />
                    <action type="Rewrite" url="/plus/list.php?tid={R:1}&amp;totalresult={R:2}&amp;PageNo={R:3}" appendQueryString="false" />
                </rule>
				<rule name="內(nèi)容頁(yè)">
                    <match url="^view-([0-9]+)-1.html$" ignoreCase="false" />
                    <action type="Rewrite" url="/plus/view.php?arcID={R:1}" appendQueryString="false" />
					                </rule>
				<rule name="文章分頁(yè)">
                    <match url="^view-([0-9]+)-([0-9]+).html$" ignoreCase="false" />
                    <action type="Rewrite" url="/plus/view.php?aid={R:1}&amp;pageno={R:2}" appendQueryString="false" />
                </rule>
                <rule name="TAGS">
                    <match url="tags.html" />
                    <conditions>
                    </conditions>
                    <action type="Rewrite" url="tags.php" appendQueryString="false" />
                </rule>
                <rule name="TAG列表">
                    <match url="^tags/(.*).html$" />
                    <action type="Rewrite" url="/tags.php?/{R:1}" />
                </rule>
                  
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

演示地址:http://www.800680.cn

注意,如果查找代碼時(shí),沒(méi)查找到,有可能是我這邊網(wǎng)站解析代碼不準(zhǔn)確導(dǎo)致多一個(gè)空格,你可嘗試去掉多余空格或者搜索這段代碼中沒(méi)有空格的部分。

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