Search code examples
asp.netasp.net-mvcasp.net-mvc-3virtual-directoryt4mvc

T4MVC and virtual directory


I'm using T4MVC in my project . but after deploying to a virtual directory e.g "/app" when I run the site all addresses were wrong . for example instead of being content/site.css it's /app/content/site.css and the browser can't find it .

for example I write :

<link href="@Links.Content.bootstrap_min_css" rel="stylesheet" type="text/css" />

that renders to

<link href="/app/Content/bootstrap.min.css" rel="stylesheet" type="text/css" />

instead of

<link href="Content/bootstrap.min.css" rel="stylesheet" type="text/css" />

how should I fix this problem ?


Solution

  • Normally, this is the correct behavior. If your app is running under the virtual directory /app, then static files should be able to be requested using /app/content/site.css. So your first focus should be on trying to understand why this is not working.

    If you really want to change this logic, look at ProcessVirtualPath in T4MVC.tt.hooks.t4. You can change the way the path is handled, and easily make it relative if you like. Make sure to rerun the T4MVC custom tool after changing this file.