Force Log in to view a page

In a template file, this should do it:

<php
If (!is_user_logged_in())
{
   wp_redirect( "start/login" );
   exit();
}
?>