您好,登錄后才能下訂單哦!
seo優化的時候,有的網站不可以生成靜態的頁面 所有就要用到偽靜態啦!
今天來看下 asp.net偽靜態的寫法
在.net程序中實現Rewrite功能可以在webconfig中的system.webServer節點中加入以上內容就可以實現轉換。
<rewrite>
<rules>
<rule name="RewriteUserFriendlyURL1" stopProcessing="true">
<match url="^([^/]+)/([^/]+)/([^/]+)/?$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.aspx?title={R:1}&id={R:2}&mode=
{R:3}" />
</rule>
</rules>
</rewrite>
以上代碼僅供參考,請根據您程序中的實際情況進行修改。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。