zoukankan      html  css  js  c++  java
  • VS加载项目时报错:尚未配置为Web项目.指定的本地IIS URL http://localhsst/..要打开项目,需要配置虚拟目录 。是否立即创建虚拟目录

    在项目目录下的.vs文件夹下,打开对应config文件夹,修改applicationhost.config

    在<sites></sites>节点下对应的site节点删除掉即可。

            <sites>
                <site name="WebSite1" id="1" serverAutoStart="true">
                    <application path="/">
                        <virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%WebSite1" />
                    </application>
                    <bindings>
                        <binding protocol="http" bindingInformation=":8080:localhost" />
                    </bindings>
                </site>
                <!-- 删除该节点
                <site name="Com.CN.Web" id="2">
                    <application path="/" applicationPool="Clr4IntegratedAppPool">
                        <virtualDirectory path="/" physicalPath="C:UsersAllenLiuTestSourceCodePMSDevelopCom.CN.Web" />
                    </application>
                    <bindings>
                        <binding protocol="https" bindingInformation="*:44308:localhost" />
                        <binding protocol="http" bindingInformation="*:56076:localhost" />
                    </bindings>
                </site>
                 -->
                <siteDefaults>
                    <!-- To enable logging, please change the below attribute "enabled" to "true" -->
                    <logFile logFormat="W3C" directory="%AppData%MicrosoftIISExpressLogs" enabled="false" />
                    <traceFailedRequestsLogging directory="%AppData%Microsoft" enabled="false" maxLogFileSizeKB="1024" />
                </siteDefaults>
                <applicationDefaults applicationPool="Clr4IntegratedAppPool" />
                <virtualDirectoryDefaults allowSubDirConfig="true" />
            </sites>    
    

      

  • 相关阅读:
    149. Max Points on a Line(js)
    148. Sort List(js)
    147. Insertion Sort List(js)
    146. LRU Cache(js)
    145. Binary Tree Postorder Traversal(js)
    144. Binary Tree Preorder Traversal(js)
    143. Reorder List(js)
    142. Linked List Cycle II(js)
    141. Linked List Cycle(js)
    140. Word Break II(js)
  • 原文地址:https://www.cnblogs.com/allenfly/p/13176680.html
Copyright © 2011-2022 走看看