本帖最后由 guanbaolong 于 2011-07-21 11:58:18 编辑

解决方案 »

  1.   

    RewriteRule ^(.*)/space/thread.php?uid=([0-9]+)&page=([0-9]+)$ $1/index.php?uid=$2 [PT]
    不知道对不对。自己试一试。
      

  2.   

    更正:RewriteRule ^(.*)/space/thread\.php\?uid=([0-9]+)&page=([0-9]+)$ $1/index.php?uid=$2 [PT]
      

  3.   


    建议学习初级URL重写指南
      

  4.   

    我是这么写的,帮忙看一下,哪里不对?
    ^RewriteRule /space/(thread|news|comment).php?uid=([0-9]+) /index.php?uid=$2 [L,R=301]
      

  5.   


    .htaccess里的重写规则如下:RewriteCond %{QUERY_STRING} ^uid\=([0-9]+)$
    RewriteRule ^space/(thread|news|comment).php$ /index.php?uid=%1

    RewriteCond %{QUERY_STRING} ^uid\=([0-9]+)&page=([0-9]+)$
    RewriteRule ^space/(thread|news|comment).php$ /index.php?uid=%1&page=%2我这边测试通过,你试一下吧