Question

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

Was it helpful?

Solution

Add this to the htaccess file in your nusa.in document root:

RedirectMatch ^/t([0-9]+)$ http://www.nusareborn.in/showthread.php?t=$1

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top