youyou

求助:twcms2.0伪静态,唯独首页不能伪静态,其他正常求帮助

求大神指点下,我的是IIS7.5的。。我先说情况吧,,
我在开动态的时候,没开伪静态
首页既然可以以index.html打开.
列表的index.php?cate--cid-2.html
内容的:index.php?show--cid-8-id-226.html

问题来了,当我用规则,在通王伪静态默认
<rule name="TWCMS Rule /" stopProcessing="true">
                    <match url="(.+)" ignoreCase="false" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php?rewrite={R:1}" />
然而,页面几乎全部没有错,就是打开首页,会出现404...晕死
其他内容页面规则列表:/youyou/  内容是/8_226.html
首页出现这样:如下图


非常急切求救中,,,补充下,以index.php来打开,就可以,,但在分类页面,他默认首页那个链接就是html

我今天开着伪静态里,,大神麻烦快出来,地址www.yoyomm.com

#1楼
发帖时间:2014-9-22   |   查看数:0   |   回复数:5
huaqi789
木有用过7.5  。、
2014-9-22 #2楼
youyou
谢谢,已经解决了,
,,我找那个服务商都解决不了,,生成个静态index.html
2014-9-22 #3楼
youyou
<?php
ob_start();
@readfile("http://www.yoyomm.com/index.php");
$text = ob_get_flush();
$myfile = fopen("index.html","w");
$text =
str_replace ("{counent}",$string,$text);
fwrite($myfile,$text);
ob_clean();
?> 
建立更XX.php
放在根目录就得了,,会产生2个页面,,一个是临时的myfile.html
一个就是index.html

2014-9-22 #4楼
youyou
附上方法,,地址修改下就可以了,比较笨的方法,实在搞不懂我的主页干嘛这样
2014-9-22 #5楼
Yangkunye.com
通王网校,点击推广链接:http://www.tongwang.net/index.php?uid=1648 去看看
2014-9-22 #6楼
游客组