forum.php?mod=viewthread&tid=12488&reltid=15423&pre_pos=1&ext=
变为
z-12488-1-1.html

解决方案 »

  1.   

    RewriteEngine on
    RewriteRule ^z-([0-9]+)-([0-9]+)-([0-9]+).html forum.php?mod=viewthread&tid=$1&reltid=$2&pre_pos=$3&ext=
      

  2.   

    是要在httpd.conf中写规则吧,楼上貌似可以,学习……
      

  3.   

    RewriteRule ^z-([0-9]+)-([0-9]+)-([0-9]+).html$ forum.php?mod=viewthread&tid=$1&reltid=$2&pre_pos=$3&ext=
    直接加到.htaccess里去就可以了。在httpd.conf里把AllowOverride None都改为AllowOverride All。这样才能让其有效果。其后不要忘记重启。