如何IIS_rewrite配置來(lái)實(shí)現(xiàn)dedecms
TAG偽靜態(tài)的方法
時(shí)間: 2018-12-07 08:36
閱讀: 次
作者:素材無(wú)憂網(wǎng)
這篇文章是說(shuō)明怎么配置IIS Rewrite偽靜態(tài),以及 tag偽靜態(tài)的方法。
1、因?yàn)闆](méi)有像PHP自帶的ReWrite模塊,所以需要去下載IIS Rewrite模塊:
在百度搜索一下IIS Rewrite IIS偽靜態(tài)組件下載一個(gè)
2、將下載下來(lái)IIS Rewrite IIS偽靜態(tài)組件壓縮包解壓到任意目錄,(比如解壓到:C:\Rewrite)。然后打開(kāi)“控制面板”>>“管理工具”>>“IIS信息服務(wù)管理器”-“網(wǎng)站”-“您的站點(diǎn)
”>>“屬性”。在“ISAPI篩選器”項(xiàng)點(diǎn)擊 “添加”,篩選器名稱填入Rewrite,可執(zhí)行文件為C:\Rewrite\Rewrite.dll ;
3、然后修改httpd.ini 文件,添加相應(yīng)的過(guò)濾規(guī)則,例如:
RewriteRule ^(.*)/([a-z0-9\-\_]+)$ $1/Default\.aspx\?id=$2 [I,O]
http://localhost/Text 就會(huì)等同于 http://localhost/Default.aspx?id=Text
RewriteRule ^(.*)/id_([a-z0-9\-]+)\.html$ $1/Default\.aspx\?id=$2 [I,O]
http://localhost/id_Text.html 就會(huì)等同于 http://localhost/Default.aspx?id=Text
^(.*)/html/([0-9]+)/([0-9]+)\.html$ $1/Default\.aspx\?id=$2&name=$3
http://localhost/html/001/007.html 就等同于 http://localhost/Default.aspx?id=001&name=007
DEDE的添加方法(注意:這里是正則方式):
RewriteRule ^(.*)/tag/(.+)$ $1/tag\.php\?$2/
RewriteRule ^(.*)/tag/(.+)\.html$ $1/tag\.php\?$2
4、重新啟動(dòng)IIS就可以生效了(這一步很重要,每次修改httpd.ini后都要重啟 IIS 以加載配置。)
5、然后修改DEDE相關(guān)函數(shù):
\include\inc_arcpart_view.php
\include\inc_channel_unit_functions.php
\include\inc_pubtag_make.php
\include\inc_taglist_view.php
即:把所有鏈接改為靜態(tài)地址:tag.php?/ ->tag/
然后再生成相關(guān)頁(yè)面就可以了。
標(biāo)簽: