您好,登录后才能下订单哦!
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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。