sorry for my poor english.
I use SMF to running my forum.
This is old forum URL => hxxp://www.mysite.com/
But now, I move my forum to "forum" folder => hxxp://www.mysite.com/forum/
Google and other search engine indexed my site with url: hxxp://www.mysite.com/index.php?topic=99.0
And when users go to hxxp://www.mysite.com/index.php?topic=99.0, It's not found.
Because he must to go to hxxp://www.mysite.com/forum/index.php?topic=99.0, right?
So, I want to redirect url from hxxp://www.mysite.com/index.php?topic=99.0 to hxxp://www.mysite.com/forum/index.php?topic=99.0
How should I do? I try this but not work.
RewriteEngine On
RewriteBase /
RewriteRule ^index.php?topic=([0-9]+).([0-9]+)$ forum/index.php?topic=$1.$2 [R]
Help me please.