如何使用.htaccess - vbulletin论坛制作短网址

时间:2014-01-22 18:17:08

标签: .htaccess vbulletin

我有一个vbulletin论坛 我想做这样的短网址 http://nusa.in/t1791会重定向到http://www.nusareborn.in/showthread.php?t=1791

例如:

short domain : short.domain.com
my forum domain : forum.domain.com

怎么做?感谢

2 个答案:

答案 0 :(得分:1)

将此添加到nusa.in文档根目录中的htaccess文件:

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

答案 1 :(得分:0)

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/

在htaccess中使用上面的代码