网络.配置更改文件默认位置
本文关键字:默认 位置 文件 配置 网络 | 更新日期: 2023-09-27 18:13:35
我有一个棘手的问题要问你:
在Visual C# IDE
中,如何更改文件在单独文件夹中的位置?
例如
这个文件夹的初始路径是Webproject/folder1/Default。在VS 2008中,我将其转换为2010,并需要重命名默认值。aspx到folder1Default。使它在2010年工作,因为我不能有多个Default.aspx。现在,当我试图导航到这个文件夹时,它无法将其作为默认页面打开。如何将此页面设置为此特定文件夹的默认位置?
如果路径是Webproject/folder1/folder1Default。aspx,我怎么能使用web更改此位置。配置文件?
谢谢。
你这样做了,但应该只有一个默认或索引文件定义在IIS或配置文件。
<location path="folder1">
<system.webServer>
<defaultDocument enabled="true">
<files>
<add value="folder1Default.aspx"/>
</files>
</defaultDocument>
</system.webServer>
</location>
我已经在配置文件中这样做了
<system.webServer>
<defaultDocument>
<files>
<remove value="default.aspx" />
<remove value="iisstart.htm" />
<remove value="index.html" />
<remove value="index.htm" />
<remove value="Default.asp" />
<remove value="Default.htm" />
<add value="folder1Default.aspx" />
</files>
</defaultDocument>
</system.webServer>