2012-08-09 56 views
0

将所有这些请求发送到单个新页面的最简单,最简单的方法是什么?称它为www.mydomain.com/page.html。提前致谢。将aspx文件重定向到所有参数的相同页面

使用asp.net/web.config文件/ URL重写

我尝试这样做..但它不工作。

<rule name="nav rule" > 
    <match url="^Nav\.aspx\/Page$" /> 
    <action type="Redirect" redirectType="Permanent" url="http://www.realestate-bigbear.com/featured-listings.html" /> 
</rule> 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FDefault.aspx%2FPageID%3D104742 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D1968245%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2125546%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2125559%26%3D%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2125562%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2125563%26%3D%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2133142%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2148897%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2164928%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2167997%26%3D%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPrint%3D1%26PropertyID%3D2205618%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPropertyID%3D2015534%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPropertyID%3D2158616%26%3D,,%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPropertyID%3D2164928%26%3D,,,,,%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPropertyID%3D2176853%26%3D,,%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPropertyID%3D2205618%26%3D%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPropertyID%3D2210074%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=%2FListNow%2FProperty.aspx%3FPropertyID%3D2212548%26%3D%26 
http://www.realestate-bigbear.com/Nav.aspx/Page=/ListNow/Default.aspx 

回答

相关问题