T4MVC and virtual directory

落花浮王杯 提交于 2019-12-25 07:39:25

问题


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 ?


回答1:


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.




回答2:


It would be helpful if you showed the code you use to reference the .css in your views. I imagine it is something like:

<link rel="stylesheet" type="text/css" href="/content/site.css">

You can specify an Application Root relative url using the following method (in Razor):

<link rel="stylesheet" type="text/css" href="@Url.Content("~/content/site.css")">

Hope that helps.



来源:https://stackoverflow.com/questions/13697889/t4mvc-and-virtual-directory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!