Reputation: 114
What is the best way to URL masking or redirect from:
http://www.domain.com/category/XXXX
TO:
http://subdomain.domain.com/category/XXXX
Upvotes: 0
Views: 240
Reputation: 785611
You can use this rule in root .htaccess:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com$ [NC]
RewriteRule ^(category/.*)$ http://subdomain.domain.com/$1 [R=301,NC,L]
Upvotes: 1