Now the solution is to use:
driver.Navigate().GoToRelativePath("/view1");
and you will be moving within the same domain.
UPDATE: This was valid in Selenium WebDriver 2.42, but it does not seem to be indicated in 3.1, the solution will be
driver.Navigate().GoToUrl(baseUrl + "/view1")
source share