How to hide the aspx file format and convert it to HTML

Source: Internet
Author: User
Use the webpage program developed by Asp.net and urlrewriter. DLL for static. A. Download urlrewriter.rar, decompress it, and put it in the/bin/directory B. Add urlrewriter.rar to the project reference. C. Configure the IIS Site and point the extension HTML to the processing program aspnet_isapi.dll. IIS Site-> properties-> Home Directory-> Configuration-> Add executable files and aspx to process the same, both c: \ windows \ microsoft.net \ framework \ v2.0.50727 \ aspnet_isapi.dll special note, do not check whether the file exists. D. Add the configuration content in Web. config, which is included in the compressed package. <Configsections> <section name = "rewriterconfig" type = "urlrewriter. config. rewriterconfigserializersectionhandler, urlrewriter"/> </configsections> <! -- Actual redirection --> <rewriterconfig> <rules> <rewriterrule> <lookfor> ~ /(\ D * cmd.html </lookfor> <sendto> ~ /User/default. aspx? Link = $1 </sendto> </rewriterrule> </rules> </rewriterconfig> <system. Web> <! -- Add HTML reference in IIS and change it to aspx reference --> 

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.