MyBB Community Forums

Full Version: Redirect url
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i know its not mybb related but how do i redirect this via .htaccess:-
Quote:http://www.mydomain.com/forumdisplay.php?fid=2
http://www.mydomain.com/index.php
To:
Quote:http://www.mydomain.com/forum/forumdisplay.php?fid=2
http://www.mydomain.com/forum/index.php

Thanks.
try below
RewriteRule forum/forumdisplay.php?fid=2 forumdisplay.php?fid=2 [L,QSA,NC]
RewriteRule forum/index.php index.php [L,QSA,NC]
(2013-05-03, 10:33 AM).m. Wrote: [ -> ]try below
RewriteRule forum/forumdisplay.php?fid=2 forumdisplay.php?fid=2 [L,QSA,NC]
RewriteRule forum/index.php index.php [L,QSA,NC]

Those are just example, i want that to happen with every url.
Redirect 302 /index.php http://www.mydomain.com/forumdisplay.php?fid=2
so it is first Redirect 302 then what you want after the yourdomain.com/ en then the url you wat to go to it
bump.