注:此系列記錄在我實際開發中遇到的問題和收藏一些技巧文章。
這個場景太常見了,當然有許多許多的方法,我來介紹一種非常簡單的方法 吧!
第一步:模擬映射頁面
我們想在一個頁面上點擊guid.html鏈接,跳轉到比較復雜URL的guid_ {492f3e0b-848e-11da-9550-00e08161165f}.html頁面。即定義一個映射,該映 射隱藏實際的URL並將其映射到用戶更容易記憶的URL。
第二步:如何做到呢
來個非常簡單的,在web.config文件的system.web節點設置urlMappings。
<system.web>
<urlMappings enabled="True">
<add url="~/guid.html" mappedUrl="guid_ {492f3e0b-848e-11da-9550-00e08161165f}.html"/>
</urlMappings>
</system.web>
這時,點擊guid.html鏈接,地址欄是guid.html,實際上是guid_{492f3e0b -848e-11da-9550-00e08161165f}.html頁面的內容了。
OK!