Is this working?
RewriteCond %{HTTP_HOST} \.tc\.example\.com$
RewriteRule ^/(.*)$ http://example.com/good/tc/$1 [R,L]
or you just want anything to go to /good/tc ?
RewriteCond %{HTTP_HOST} \.tc\.example\.com$
RewriteRule ^/.* http://example.com/good/tc [R,L]
On Fri, Nov 25, 2011 at 10:46 PM, Dennis <[email protected]> wrote:
> Hi, guys,
>
> I want to rewrite from "tc.example.com/xyz" to "example.com/good/tc"
>
> I tried the following rewrite rule, but it doesnot work.
>
> RewriteCond %{HTTP_HOST} \.tc\.example\.com$
> RewriteRule ^/(.*) /good/$1 [NC,P,L]
>
> Any idea how to do it?
>
> Thanks.
> Dennis
>