<head>부분에 다음 스크립트를 넣으시면 됩니다.
Put the following script into Head area in your html.

<script  language="JavaScript" type="text/javascript">
var host = location.host.toLowerCase();
var currentAddress = location.href;location.href;
if (host.indexOf("www") == -1)
{
  currentAddress = currentAddress.replace("//","//www.");
  location.href = currentAddress;
}
</script>