标题基本概括了所有内容。在 jquery-ui.css 中,它定义了如下样式:
ui-widget-content {
border: 1px solid #aaaaaa/*{borderColorContent}*/;
background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*
color: #222222/*{fcContent}*/;
}
这在开发中运行良好,但一旦部署,url 不再解析。该站点部署在 IIS7 中的默认网站下。所以在浏览器控制台中我可以看到它正在寻找图像
http:// (servername)/(appName)/Content/images/ui-bg_glass_75_e6e6e6_1x400.png代替
http:// (serverName)/(appName)/content/themes/base/images...
这是捆绑配置:
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/themes/base/jquery-ui.css",
"~/Content/site.css"
));
如何使这些 URL 正确解析?