The link was like this:
Code:
http://www.donaim.com/forum/t1000-5/
where 1000 is the thread id and 5 is the page#
I want to redirect it to
Code:
http://www.domain.com/forum/showthread.php?t=1000&page=5
I tried this:
Code:
RewriteRule ^t([0-9]+-[0-9]+)/$ http://www.domain.com/forum/showthread.php?t=$1 [L,R=301]
But it is redirected to:
http://www.domain.com/forum/showthread.php?t=1000-5
I want it like (showthread.php?t=1000
&page=5)
Any idea?