mvc中在vs里面运行出界面了但css跟js路径根本无法访问

mvc中在vs里面运行出界面了但css和js路径根本无法访问
mvc中在vs里面运行出界面了但css跟js路径根本无法访问mvc中在vs里面运行出界面了但css跟js路径根本无法访问mvc中在vs里面运行出界面了但css跟js路径根本无法访问







mvc中在vs里面运行出界面了但css和js路径根本无法访问


namespace Himall.Web
{
    public class MvcApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            RouteTable.Routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
            RegistAtStart.Regist();
            Job.Start();
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            GlobalConfiguration.Configure(new Action<HttpConfiguration>(WebApiConfig.Register));
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            AreaRegistrationOrder.RegisterAllAreasOrder();
            BundleConfig.RegisterBundles(BundleTable.Bundles);
            XmlConfigurator.Configure();
        }
    }
}



------解决思路----------------------
路径在mvc文件里面加波浪线,~/scripts/...
------解决思路----------------------
/ 是网站根目录。 


文件不在?