Reputation: 29
i have a vbulletin forum
i want to make short url like this
http://nusa.in/t1791
will redirect to http://www.nusareborn.in/showthread.php?t=1791
ex:
short domain : short.domain.com
my forum domain : forum.domain.com
how to do that? thanks
Upvotes: 0
Views: 272
Reputation: 4575
Redirect 301 http://www.mysite.com/about_us.php http://www.mysite.com/about-us/
Redirect 301 http://www.mysite.com/contacts.php http://www.mysite.com/contacts/
use above code in htaccess
Upvotes: 0
Reputation: 143906
Add this to the htaccess file in your nusa.in
document root:
RedirectMatch ^/t([0-9]+)$ http://www.nusareborn.in/showthread.php?t=$1
Upvotes: 1