Go to the web file, not web.connectionstrings file in the www.root folder. Search for Rewrite. I saw two sections with Rewrite in them these are the sections I removed and the dev environment worked again.
Line 34
<customErrors mode="On" defaultRedirect="/Error.aspx" redirectMode="ResponseRewrite" />
Line 138
<rewrite>
<rules>
<rule name="Redirect to http" enabled="true" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" negate="false" />
<conditions logicalGrouping="MatchAny">
<add input="{HTTPS}" pattern="off" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Found" />
</rule>
<rule name="Force non-www" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^journeyconnect\.org$" negate="true" />
<add input="{HTTP_HOST}" pattern="^admin.journeyconnect\.org$" negate="true" />
<add input="{HTTP_HOST}" pattern="^admin.thejourney\.cc$" negate="true" />
</conditions>
<action type="Redirect" url="https://journeyconnect.org/{R:1}" />
</rule>
</rules>
</rewrite>