原因:
早期由于搜索引擎蜘蛛的不完善,蜘蛛在爬行動態(tài)的url的時候很容易由于網(wǎng)站程序的不合理等原因造成蜘蛛迷路死循環(huán)。
所以蜘蛛為了避免之前現(xiàn)象就不讀取動態(tài)的url,特別是帶?的url
解決方案:
1):配置路由
復(fù)制代碼 代碼如下:
routes.MapRoute("RentofficeList",
"rentofficelist/{AredId}-{PriceId}-{AcreageId}-{SortId}-{SortNum}.html",
new { controller = "Home", action = "RentOfficeList" },
new[] { "Mobile.Controllers" });
第一個參數(shù)是路由名稱
第二個參數(shù)是路由的Url模式,參數(shù)之間用{}-{}方式分隔
第三個參數(shù)是一個包含默認(rèn)路由的對象
第四個參數(shù)是應(yīng)用程序的一組命名空間
2):設(shè)置連接
a href="@Url.Action("RentofficeList",new RouteValueDictionary { { "AredId",0},{"PriceId",0},{"AcreageId",0},{"SortId",0},{"SortNum",0}})">默認(rèn)排序/a>
對照上面的Url模式,依次寫入?yún)?shù)賦值
3):獲取參數(shù)
復(fù)制代碼 代碼如下:
int areaId = GetRouteInt("AredId");//獲取參數(shù)
/// summary>
/// 獲得路由中的值
/// /summary>
/// param name="key">鍵/param>
/// param name="defaultValue">默認(rèn)值/param>
/// returns>/returns>
protected int GetRouteInt(string key, int defaultValue)
{
return Convert.ToInt32(RouteData.Values[key], defaultValue);
}
/// summary>
/// 獲得路由中的值
/// /summary>
/// param name="key">鍵/param>
/// returns>/returns>
protected int GetRouteInt(string key)
{
return GetRouteInt(key, 0);
}
根據(jù)上面3個步驟操作,顯示的url地址為:
http://localhost:3841/rentofficelist/3-0-0-0-0.html
這樣就可以避免靜態(tài)頁面上使用動態(tài)參數(shù),顯示的頁面都為靜態(tài)頁面
您可能感興趣的文章:- javascript SpiderMonkey中的函數(shù)序列化如何進(jìn)行