Notes for rewrite in ASP. NET Web. config

Source: Internet
Author: User

When we perform SEO Optimization on websites, we often change websites without www to those with www. For example, we can redirect the user-entered baidu.com to www.baidu.com for 301.

No matter what method you are using, I use it anyway: Add the following configuration in the section of web. config:

<Rewrite>
<Rules>
<Rule name = "CanonicalHostName" stopProcessing = "true">
<Match url = "(. *)"/>
<Conditions>
<Add input = "{HTTP_HOST}" pattern = "^ baidu \. com $"/>
</Conditions>
<Action type = "Redirect" url = "http://www.baidu.com/?r}" redirectType = "Permanent"/>
</Rule>
</Rules>
</Rewrite>

In this way, the problem is easily solved.

However, today I encountered a small accident, that is, the names of rule on the same server cannot be repeated. That is to say, there are many websites on one server, and of course there will be many web pages. in the configuration, the redirected rule name attribute cannot be repeated; otherwise, an error is returned.

 

In short, the problem should be calm. Use exclusion to Solve the Problem slowly (I personally prefer to use this) until it no longer hurts.

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.