htaccess URL重写重定向

时间:2014-04-13 22:52:03

标签: .htaccess mod-rewrite rewrite

我有一个链接:http://testsite.com/api/v2/1 我想将我的浏览器指向:1.testsite.com并在.htaccess中使用重定向将其链接到此地点:http://testsite.com/api/v2/1

我该怎么做?

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^(.+)\.testsite\.com$ [NC]
RewriteRule ^$ http://testsite.com/api/v2/%1 [L]