我尝试编辑旧ASP网站主页的URL。该文件为Default.aspx
,当前网址为/homepage
。
我像这样编辑web.config以使用新的(测试)URL /homepage123
<rule name="RedirectHomepage" stopProcessing="true">
<match url="^Default\.aspx$" />
<conditions>
<add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
</conditions>
<action type="Redirect" url="homepage123" appendQueryString="false" />
</rule>
<rule name="RewriteHomepage" stopProcessing="true">
<match url="homepage123" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="Default.aspx" />
</rule>
当我在visual studio中启动应用程序时,我的问题是/homepage123
无法正常工作。
当我尝试访问Default.aspx
时,我总是被重定向到/homepage
答案 0 :(得分:0)
如果使用IIS 7或IIS 7.5,则可以在webconfig文件中设置defaultDocument
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="homepage123.aspx" />
</files>
</defaultDocument>
</system.webServer>