First, you must have support for the Windows environment and. NET Framework. We also recommend that you install. NET development tools such as. NET Framework SDK or Visual Studio. NET. Note that Windows versions are 2000, 2003, and XP. The. NET Framework cannot be installed in the Win9X series. Then install Apache. Use Apache of Win32 platform, version 2.0 or later. : Http://apache.justdn.org..., the specific installation process please refer to other articles, this article will not go into detail.
Download and install the ASP. NET module in the Apache environment. : Http://www.apache.org/di..after the download is completed, double-click it. installation can be completed either way.
To facilitate management, we create an asp Directory under the htdocs directory to store the. aspx file. Now you need to make some configuration for the httpd. conf file and add it at the end of the file:
# Asp.net
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"
AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj
Licx rem resources resx soap vb vbproj vsdisco webinfo
# Mount the ASP. NET example application
AspNetMount/active "D:/Program Files/Apache Group/Apache2/htdocs/asp"
# Map all requests for/active to the application files
Alias/active "D:/Program Files/Apache Group/Apache2/htdocs/asp"
# Allow asp.net scripts to be executed in the active example
Options FollowSymlinks ExecCGI
Order allow, deny
Allow from all
DirectoryIndex Default.htm Default. aspx
# For all virtual ASP. NET webs, we need the aspnet_client files
# To serve the client-side helper scripts.
AliasMatch/aspnet_client/system_web/(d +) _ (d + )/(.*)
"C:/Windows/Microsoft. NET/Framework/v $1. $2. $3/ASP. NETClientFiles/$4"
"C:/Windows/Microsoft. NET/Framework/v */ASP. NETClientFiles">
Options FollowSymlinks
Order allow, deny
Allow from all
D:/Program Files/Apache Group/Apache2 is the installation directory of Apache, which should be changed according to the actual situation. Now you can place the asp. NET probe in the ASP Directory. After restarting Apache, you can experience ASP. NET under Apache.
Because ASP. NET in IIS and Apache runs on the basis of Common Language Runtime (CRL), ASP. NET programs in Apache are not slower than those in IIS <