ss7更换模板后伪静态失效,全变成动态链接了,操作如下:
1、已将空间商支持的伪静态文件httpd.ini放入站点根目录;
2、后台已开启伪静态简短REWRITE模式,后缀为html。
伪静态规则如下:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# SupeSite Rewrite规则
# 独立主机用户
# 修改以下语句中的 /supesite 修改为你的SupeSite目录地址,如果程序放在根目录中,请将 /supesite 修改为 /
RewriteRule ^/([0-9]+)$ /index\.php\?uid/$1 [L]
RewriteRule ^/([0-9]+)/spacelist(.+)$ /index\.php\?uid/$1/action/spacelist/type$2 [L]
RewriteRule ^/([0-9]+)/viewspace(.+)$ /index\.php\?uid/$1/action/viewspace/itemid$2 [L]
RewriteRule ^/([0-9]+)/viewbbs(.+)$ /index\.php\?uid/$1/action/viewbbs/tid$2 [L]
RewriteRule ^/([0-9]+)/(.*)$ /index\.php\?uid/$1/$2 [L]
RewriteRule ^/action(.+)$ /index\.php\?action$1 [L]
RewriteRule ^/category(.+)$ /index\.php\?action/category/catid$1 [L]
RewriteRule ^/viewnews(.+)$ /index\.php\?action/viewnews/itemid$1 [L]
RewriteRule ^/viewthread(.+)$ /index\.php\?action/viewthread/tid$1 [L]
RewriteRule ^/mygroup(.+)$ /index\.php\?action/mygroup/gid$1 [L]
以上操作后测试ss7默认的模板没有任何问题,伪静态乖乖地都很正常。我把站点首页模版文件index.html.php换成自己做的首页模板文件,并调用部分最新资讯作为模块。
模块放置在模板内的显示代码如下:
<td height="600" colspan="5" valign="top" bgcolor="#FFFFFF">
<!--{block name="spacenews" parameter="catid/14,15,16,17,21,24,25,32,56,70,75,79,33,34,35,36,37,46,47,49,50,71,73,54,55,60,69,76,77,78/order/i.dateline DESC,i.digest DESC,i.viewnum DESC/limit/0,30/cachetime/30/subjectlen/38/showcategory/1/cachename/shouye_zixun/tpl/data"}--><!--首页最新资讯-->
<table width="100%" border="0" cellspacing="0">
<!--{loop $_SBLOCK[shouye_zixun] $value}-->
<tr>
<td width="77%" height="16"><img src="http://www.witkeysky.com/tupian/1-zuixin.gif" width="16" height="14" /><a href="$value[url] " target="_blank"> $value[subject] </a></td>
<td width="23%" align="right"> #date('m-d H:i', $value['dateline'])# </td>
</tr>
<!--{/loop}-->
</table>
</td>
问题:
更新缓存后打开站点首页,发现首页这个模块显示的资讯标题链接均为动态链接,而不是我夜思梦想的伪静态,但没有更换模板的其他页面资讯标题链接都是伪静态很正常,请问我改如何解决首页伪静态的问题啊?
((mk10)) |