1、用自定义列表生成的目录,比如目录aaa,首页只能是/aaa/index.html才能打开,但是/aaa/的样式却打不开,该怎么设置?谢谢。 2、栏目页是伪静态,目录/bbb/样式可以打开。伪静态扩展名也是html。 主机默认主页是index.html和index.php,所有目录的默认主页都继承主机默认主页的设置。 主机系统是windows servers 2012
【找到问题原因了】 网站用的的http://bbs.phome.net/showthread-31-358327-0.html伪静态规则。 <rule name="栏目页" stopProcessing="true"> <match url="^([0-9a-zA-Z-/]+)/(|index.html|index_[0-9]+.html)$" /> <conditions logicalGrouping="MatchAll"> <add input="{QUERY_STRING}" pattern="^(.*)$" ignoreCase="false" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{R:1}" pattern="^(d/|e/|html/|images/|s/|search/|skin/|t/|ad)" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="/e/action/list.php?classid={R:1}&page={R:2}" appendQueryString="false" /> </rule> 把自定义目录添加到<add input="{R:1}" pattern="^(d/|e/|html/|images/|s/|search/|skin/|t/|ad/|自定义目录)" ignoreCase="false" negate="true" />就正常了。
|