how to change url like http://mysite.com/forum/forum.php?id=1 ahttp://forum.mysite.com/forum.php?id=1
http://mysite.com/forum/forum.php?id=1
http://forum.mysite.com/forum.php?id=1
Do you want <<20> to be /foo ? If yes then use this code in your .htaccess:
/foo
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule ^forum/(.+)$ $1 [L,NC,R]