문제

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

도움이 되었습니까?

해결책

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

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

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top