nkmaurya
nkmaurya

Reputation: 53

hide some middle part of URL

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

Answers (1)

anubhava
anubhava

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

Related Questions