高人指点下,rewrite规则是如何操作的?
itaoo 2009-08-07 10:57:04 <IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2 (1)
RewriteRule ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&page=$3 (2)
RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&extra=page\%3D$4&page=$3
(3)
RewriteRule ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3 (4)
RewriteRule ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2 (5)
</IfModule>
这是discuz的规则。。
上面5行中 都有$ 符号 ,,还有$1,$2,$3...
这都是什么意思啊?