How to redirect all subdomains to root through 301 ?

Gipsy Kings

Junior Member
Joined
Jun 15, 2011
Messages
177
Reaction score
38
Hi all,

How can I do 301 redirect through htaccess to root domain ? for all subdomains without listing them in htaccess file ?

Thanks in advance <3
 
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.domain\.com$
RewriteCond %{HTTP_HOST} (www\.)?(.*)\.domain\.com$
RewriteCond %{REQUEST_URI} !sub/
RewriteRule ^(.*)$ sub/%2/$1
 
Back
Top