我发现在 apache 伪静态规则 漏了一条,

  1. RewriteCond %{QUERY_STRING} ^(.*)$
  2. RewriteRule ^article-(.+).html$ portal.php?mod=view&aid=$1&%1

导致很多用户的门户文章伪静态后出错,找不到页面。

经测试发现是少了一条门户文章的规则。

在 apache 下
的规则为:

  1. # Rewrite 系统规则请勿修改 漏掉的文章链接:portal.php?mod=view&aid=num
  2. RewriteCond %{QUERY_STRING} ^(.*)$
  3. RewriteRule ^article-(.+).html$ portal.php?mod=view&aid=$1&%1
  4. RewriteCond %{QUERY_STRING} ^(.*)$
  5. RewriteRule ^topic-(.+).html$ portal.php?mod=topic&topic=$1&%1
  6. RewriteCond %{QUERY_STRING} ^(.*)$
  7. RewriteRule ^forum-(w+)-([0-9]+).html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1
  8. RewriteCond %{QUERY_STRING} ^(.*)$
  9. RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$
    forum.php?mod=viewthread&tid=$1&extra=page%3D$3&page=$2&%1
  10. RewriteCond %{QUERY_STRING} ^(.*)$
  11. RewriteRule ^group-([0-9]+)-([0-9]+).html$ forum.php?mod=group&fid=$1&page=$2&%1
  12. RewriteCond %{QUERY_STRING} ^(.*)$
  13. RewriteRule ^space-(username|uid)-(.+).html$ home.php?mod=space&$1=$2&%1
  14. RewriteCond %{QUERY_STRING} ^(.*)$
  15. RewriteRule ^archiver/(fid|tid)-([0-9]+).html$ archiver/index.php?action=$1&value=$2&%1

其他的,以玻璃屋女孩的教程为准。
希望对大家有帮助。