Redirecting URL without www to www

isapi-rewrite, mod-rewrite, url-rewriting

Solution

Try this mod_rewrite rule:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Problem

I need your help. I want to test if the URL is entered without www like `example.com` it should be forwarded to `www.example.com`.

Original source