DEDECMS列表页,内容页IIS10伪静态设置,亲测有效

本教程只设置列表页,内容页,TAGS页的伪静态,其他搜索页之类的,太麻烦,水平有限,所以就不测试了。网站运行环境 IIS7(10)+PHP+MYSQL,织梦版本:dedecms v5.7。 1.你的运行环境必须支持伪静态,自动百度:IIS URL重写模块,下载后安装。 2.修改后台设置
本教程只设置列表页,内容页,TAGS页的伪静态,其他搜索页之类的,太麻烦,水平有限,所以就不测试了。网站运行环境 IIS7(10)+PHP+MYSQL,织梦版本:dedecms v5.7。
 
1.你的运行环境必须支持伪静态,自动百度:IIS URL重写模块,下载后安装。
 
 
2.修改后台设置
 
a.后台-系统参数-核心设置-是否使用伪静态:选择“是”;
 
b.后台-系统-SQL命令行工具中执行如下语句:
 
update dede_arctype set isdefault=-1;
update dede_archives set ismake=-1;
 
c.修改后面模板文件:\dede\templets\article_add.htm,有两个地方要修改。把默认的“生成生成HTML”选择状态去掉,选中“仅动态浏览”。修改方法:搜索“发布选项”,在下面
 
第一段代码:<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.把站点根目录下index.html删除,以后不更新主页HTML即可,当然你也可以选择不使用动态首页;
 
3修改程序文件:
 
a.打开:/include/helpers/channelunit.helper.php
 
搜索:
 
return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html';

 
替换为:
 
return "/archives/view-".$aid.'-1.html';

 
这个是将文章页默认的/plus/view-1-1.html链接格式改为/archives/view-1-1.html ,你也可以把archives改成其他名字。这里我用的是archives,这里如果修改了,下面的规则里面也要修改成你自己的名字
 
搜索:
 
$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;

 
替换为:
 
$reurl = "/category/list-".$typeid.".html";

 
这是里让你的频道或是列表页URL变更为/category/list-1.html形式。category你也可修改成其他名字。
 
b.修改列表页分页,打开/include/arc.listview.class.php
 
搜索
 
$plist = str_replace('.php?tid=', '-', $plist);

 
替换成:
 
$plist = str_replace('plus', 'category', $plist);//将默认的plus替换成category
$plist = str_replace('.php?tid=', '-', $plist); 
 
这里是修改列表页分页的
 
c.修改文章分页
 
打开/include/arc.archives.class.php,找到获取动态的分页列表GetPagebreakDM()函数末尾片:
 
$PageList = str_replace(".php?aid=","-",$PageList);

 
替换为
 
$plist = str_replace('plus', 'archives', $plist);//将默认的plus替换成archives
$PageList = str_replace(".php?aid=","-",$PageList);
 
d.打开/include/taglib/tag.lib.php
 
查找:
 
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";

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

 
这里是修改TGA标签伪静态的.
 
打开\templets\default\taglist.htm,把里面的TAG标签链接地址/tgas.php修改为/tags.html
 
 
 
4.伪静态规则:把下面代码另存为web.config,放到网站根目录下即可。
 
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
   <rule name="首页">
                    <match url="^index.html$" ignoreCase="false" />
                    <action type="Rewrite" url="index.php" appendQueryString="false" />
                </rule>
                <rule name="列表页">
                    <match url="category/list-([0-9]+).html" ignoreCase="false" />
                    <action type="Rewrite" url="/plus/list.php?tid={R:1}" appendQueryString="false" />
                </rule>
                <rule name="列表分页">
                    <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="内容页">
                    <match url="^view-([0-9]+)-1.html$" ignoreCase="false" />
                    <action type="Rewrite" url="/plus/view.php?arcID={R:1}" appendQueryString="false" />
               </rule>
<rule name="文章分页">
                    <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>

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

织梦DEDECMS 栏目文章文章命名规则修改, 每次添加栏目的时候 都要改文章命名规则,十分麻烦, 修改下面这个地方就可以一改永亦,织梦模板网为您解答 找到\include\common.inc.php 搜索 $cfg_df_namerule 把: $cfg_df_namerule = {typedir}/{Y}/{M}{D}/{aid
当我们通过{dede:arclist keyword=关键词}来调用文章列表时,你会发现只在其中一个栏目里生效,在其他栏目,仍然显示上一次的关键词。 原因是由于arclist的缓存导致的。 只需修改/include/taglib/arclist.lib.php文件,大概在384行: $taghash = md5(seriali
我们在使用织梦dedecms数据库内容替换时候,经常遇到 安全码 显示的无法识别或者不清晰,这个安全码的位置是在核心 - 批量维护 - 数据库内容替换,如果识别不了,这个页面还没有改变验证码的地方,只能重新刷新页面,如果我们不想要这个安全码的话,要怎么操
今天一个客户在安装织梦dedecms时候,安装完成后登录后台就出现Safe Alert Request Error step 2,常用dedecms的朋友都知道,这是织梦的安全机制,在程序觉得有sql注入等攻击时候,会有这种提示。 1、起初我以为是文件没传全,让这个朋友重新传了文件上去安
dede织梦搜索伪静态,伪静态设置成功后,访问URL地址效果如下: 搜索页 http://www.baidu.com/search/织梦.html 搜索分页 http://www.baidu.com/search/织梦-2.html 本教程也适用于手机端。 开启伪静态: 后台-系统参数-核心设置-开启伪静态 后台-系统参数-
在使用 织梦模板 建站中,随机数作为一个偶尔使用到的参数,在具体使用中虽然用的少,但是今天跟版网小编给大家介绍下,大家可以参考下: 实现随机数的调用可以使用下面的js: 方法一:js代码 Math.rondom()*(m-n)+n; //生成在n到m之间的整数 但如果要用随机