Điều này sẽ thay đổi domain.comthành www.domain.com:
# Force the "www."
RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
Làm cách nào để thay thế phần "miền" để phần này hoạt động trên bất kỳ miền nào?
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]