你需要重写url 就可以了。

解决方案 »

  1.   

    本论坛用的貌似也是伪静态
    不过是.net
      

  2.   

    首先需要服务器支持,然后把规则写成.htaccess文件就可以了
      

  3.   

    404 错误重定向# 将 RewriteEngine 模式打开
            RewriteEngine On        # Rewrite 系统规则请勿修改
              RewriteRule ^archiver/((fid|tid)-[0-9]+\.html)$ archiver/index.php?$1
              RewriteRule ^forum-([0-9]+)-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2
              RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ viewthread.php?tid=$1&extra=page\%3D$3&page=$2
              RewriteRule ^space-(username|uid)-(.+)\.html$ space.php?$1=$2
              RewriteRule ^tag-(.+)\.html$ tag.php?name=$1
      ErrorDocument 404 /product.php  下面还能加其它内容吗