The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades.
×


yyCC
-
Posts
6 -
Joined
-
Last visited
Community Answers
-
yyCC's post in Redirect 'www' pages to 'non www' pages .htaccess was marked as the answer
If there is just one subdomain or a limited amount you can do it one by one with:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.subdomain.domain.com$ [NC] RewriteRule ^(.*)$ http://subdomain.domain.com/$1 [R=301] Otherwise it gets more complicated with the rewrite rules and I won't get into that.