<div class="votecell post-layout--left"> <div class="vote">0
down vote
favorite<div class="favoritecount"></div> </div> </div> <div class="postcell post-layout--right"> <div class="post-text" itemprop="text">
I have a website (http://jsoncore.net) that I am using to learn .NET Core 2 and I want to remove the shared hosting folder name from the URL that is added to links and sources. For example I add an Html.ActionLink like this:
@Html.ActionLink(page.NavTitle, page.Slug,"Home")
and the system writes it to this:
<a href="/jsoncore/blog">Blog</a>
I want to remove the "/jsoncore" from the link URL so that it should look like this:
<a href="/blog">Blog</a>
</div> </div>