我有一个链接:http://testsite.com/api/v2/1 我想将我的浏览器指向:1.testsite.com并在.htaccess中使用重定向将其链接到此地点:http://testsite.com/api/v2/1
我该怎么做?
答案 0 :(得分:0)
试试这个:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.+)\.testsite\.com$ [NC]
RewriteRule ^$ http://testsite.com/api/v2/%1 [L]