Webserver IIS ASP configuration and pseudo-static settings
I. Overview:
in Windows Server 2003 systems, users can configure ASP, PHP, and ASP based on IIS 6.0. NET, and dynamic Web sites in languages such as Dynamic Web site based on database technology, can achieve a more comprehensive function. Dynamic Web site with strong interactivity, automatic release information and other characteristics, more suitable for companies, enterprises use .
Two. Configure asp:
Create a Web site in 1.iis:
2. Enable directory (Directory browsing)
3. Enable parent path (ASP)
4. Add index.asp (default document)
5. Enable 32 applications (program pool)
Three. Configure pseudo-static:
1. Download install URL Rewrite tool: Rewrite_x64_zh-cn.msi
2. Configure the Web. config
Put the following code into the <system.webServer> node
<rewrite> <rules> <rule name="demotest"> <match url= " ^test.html$ " /> <action type="Rewrite" url="{r:1}/ testok.html" /> </rule> </rules></rewrite>
You can also configure it in IIS:
Webserver ASP configuration and pseudo-static settings