Reputation: 53
how to change url for example http://mysite.com/forum/forum.php?id=1
a http://forum.mysite.com/forum.php?id=1
Upvotes: 3
Views: 4195
Reputation: 785186
Do you want any /forum/foo
to be /foo
? If yes then use this code in your .htaccess:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule ^forum/(.+)$ $1 [L,NC,R]
Upvotes: 5