伪静态下不能分页

2016-07-07 15:32 来源:www.chinab4c.com 作者:ecshop专家

开启了伪静态,其他的都正常,只是当点击下一页的时候,没有作用,总是只显示第一页,点击数字页码也是一样的,对于伪静态规则我没有研究过,不知道是什么原因,系统是window+IIS的
如果需要看我的伪静态代码,说一声我就会帖上的。

回答:
自己顶顶。。。

请提供您的网址
还有您的伪静态代码

晓天老大,你去哪了,来瞅瞅啊



无奈之下,还是自己动手解决了。现在在把解决方法共享下。
我的空间是西部数码的,先声明,我只是他们的一个客户,不是为他们打广告的,如果其他空间的设置差不多的话,同样可以参考。
先登陆空间他们的网站,进入主机管理-isapi筛选器,开始前他们的客服帮我开启的是常见系统URL静态化支持。
现在,点击开启自定义的URL静态化支持,开启成功后,把原来的筛选器删除,登陆FTP,进入/others/discuz/,替换httpd.ini里的内容为:
  1. [ISAPI_Rewrite]
  2. # 为了确保重写规则不影响服务器上的其他站点
  3. # 请将下面的语句前的#号去掉,并将(?:www\.)?site1\.com也就是现在的www.magic-shop.cn改为商店所在域名
  4. # 测试文件
  5. RewriteRule /cs-([0-9,a-z,*]*).html /cs.asp\?id=$1
  6. RewriteCond %{HTTP:Host} www.magic-shop.cn
  7. RewriteRule ^(.*)/index.html$ $1/index\.php [I]
  8. RewriteRule ^(.*)/category$$1/index\.php [I]
  9. RewriteRule ^(.*)/feed-c([0-9]+).xml$$1/feed\.php\?cat=$2 [I]
  10. RewriteRule ^(.*)/feed-b([0-9]+).xml$$1/feed\.php\?brand=$2[I]
  11. RewriteRule ^(.*)/feed.xml$$1/feed\.php[I]
  12. RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$ $1/category\.php\?id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6&page=$7&sort=$8&order=$9 [I]
  13. RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)\.html$ $1/category\.php\?id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6[I]
  14. RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$$1/category\.php\?id=$2&brand=$3&page=$4&sort=$5&order=$6[I]
  15. RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*)\.html$ $1/category\.php\?id=$2&brand=$3&page=$4[I]
  16. RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)(.*)\.html$$1/category\.php\?id=$2&brand=$3 [I]
  17. RewriteRule ^(.*)/category-([0-9]+)(.*)\.html$$1/category\.php\?id=$2[I]
  18. RewriteRule ^(.*)/goods-([0-9]+)(.*)\.html$ $1/goods\.php\?id=$2[I]
  19. RewriteRule ^(.*)/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$$1/article_cat\.php\?id=$2&page=$3&sort=$4&order=$5[I]
  20. RewriteRule ^(.*)/article_cat-([0-9]+)-([0-9]+)(.*)\.html$ $1/article_cat\.php\?id=$2&page=$3 [I]
  21. RewriteRule ^(.*)/article_cat-([0-9]+)(.*)\.html$ $1/article_cat\.php\?id=$2[I]
  22. RewriteRule ^(.*)/article-([0-9]+)(.*)\.html$$1/article\.php\?id=$2 [I]
  23. RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)\.html$1/brand\.php\?id=$2&cat=$3&page=$4&sort=$5&order=$6 [I]
  24. RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*)\.html $1/brand\.php\?id=$2&cat=$3&page=$4[I]
  25. RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)(.*)\.html $1/brand\.php\?id=$2&cat=$3[I]
  26. RewriteRule ^(.*)/brand-([0-9]+)(.*)\.html$1/brand\.php\?id=$2[I]
  27. RewriteRule ^(.*)/tag-(.*)\.html$1/search\.php\?keywords=$2[I]
  28. RewriteRule ^(.*)/snatch-([0-9]+)\.html$ $1/snatch\.php\?id=$2[I]
  29. RewriteRule ^(.*)/group_buy-([0-9]+)\.html$ $1/group_buy\.php\?act=view&id=$2[I]
  30. RewriteRule ^(.*)/auction-([0-9]+)\.html$$1/auction\.php\?act=view&id=$2 [I]
复制代码

http.rar (832 Bytes)

http.ini文件


多谢楼上的.. 已解决... 感恩!