asp.net URL Rewrite Benefits and methods _ practical Tips

Source: Internet
Author: User

Benefits of URL Rewriting:

1, convenient search engine retrieval (HTML format of the site search engine remember the highest priority, SEO optimization better)

2,url more concise, convenient user memory

3, hidden pages of actual road strength and specific development techniques

Using URLRewriter.dll Overrides

After using URLRewriter.dll, you only need to use the following steps to do URL rewriting

1, write under Webconfig

Copy Code code as follows:

<Rules>
<!--rule 1-->
<RewriterRule>
<LOOKFOR>~/D (\d+) \.html </LookFor>
<sendto>~/default.aspx?id=$1 </SendTo>
</RewriterRule>
</Rules>

Page display is ~/default.aspx?id=5, automatic or converted to ~/d5.html, only with regular to constrain

2, configure Httpmodel

Copy Code code as follows:

<add type= "Urlrewriter.modulerewriter, Urlrewriter" name= "Modulerewriter"/>

Windows2003 Server configuration:
Web site-> Properties-> Directory-> configuration (G)-> mapping-> wildcard application Mappings-> insert
Executable file: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll
Confirm file exists: not selected

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.