我正在尝试从 2 个不同的 URL 重定向,只需要 2 个或更多参数。我这样做了几次,但我的记忆力真的很差,我不记得怎么做(我认为是年龄问题)。
例子:
from http://www.abc.net/forum/index.php/board,(\d+).0.html
to http://www.abc.com/forum?view=category&catid=%1
from http://www.abc.net/forum/index.php/board,(\d+).(\d+).html
to http://www.abc.com/forum?view=category&catid=%1&other=%2
可能更多,但我会在一些帮助下解决它:
我的坏例子:
Options +FollowSymLinks
## Mod_rewrite in use.
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^board,(\d+).0.html$
RewriteRule ^/forum/index.php$ http://www.abc.com/forum?view=category&catid=%1 [L,R]
谢谢你的帮助