2012-08-09 43 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 

回答

相關問題