Hi Brandon, i tried turning it on but it breaks my site in a different way.
It did not used to be a problem, from the dnn source code:
If ParsePortNumber Then
If DomainName.ToString.IndexOf(":") <> -1 Then
Dim usePortNumber As Boolean = (Not Request.IsLocal)
If Not Utilities.Config.GetSetting("UsePortNumber") Is Nothing Then
usePortNumber = Boolean.Parse(Utilities.Config.GetSetting("UsePortNumber"))
End If
If usePortNumber = False Then
DomainName = DomainName.Replace(":" & Request.Url.Port.ToString(), "")
End If
End If
End If
If you connect to it from localhost, it automaticly is turned on.
But when using friendly url's it bugs in the following way
it adds an extra / behind the webrootpath.
http://localhost:2409/dnn494//testpagian.aspx
that url doesnt work, not even after i added
<RewriterRule>
<LookFor>http://.*//(.*)</LookFor>
<SendTo>~/$1</SendTo>
</RewriterRule>
this does not seem to fix the problem.