/ Published in: Apache
A more generic and portable snippet
Expand |
Embed | Plain Text
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Comments
Subscribe to comments
You need to login to post a comment.

Here's another option:
RewriteEngine On RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]