Make Apache support ASP. NET (Apache 2.0 or above)

Source: Internet
Author: User

Apache is a widely used network server program. It is not only widely used on UNIX/LINUX platforms, but also many websites on Windows platforms that have abandoned IIS and switched to Apache.

. NET is a powerful development technology launched by Microsoft. Its goal is to compete with Java. ASP. NET is very suitable for small and medium-sized enterprise Web applications, and its performance is greatly improved compared with ASP3.0.

The following describes how to enable Apache to support ASP. NET.

First, you must have support for the Windows environment and. NET Framework. It is also recommended to install and 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. Version 2.0.51 is recommended. :

Entering http://apache.justdn.org/httpd/binaries/win32/

Select a version later than 2.0 (. msi suffix)

For more information about the installation process, see other articles.

Download and install the ASP. NET module in the Apache environment. :

Address 1: Enter the http://httpd.apache.org/cli/

Select Download the mod_aspdotnet 2.0.0. msi installer

Address 2: http://cndyd.net/mod_aspdotnet-2.0.0.msi

The installation path must be the same as that of Apache. Otherwise, the installation will fail.

To facilitate management, we create an active directory under the htdocs directory to store the. aspx file. Now, to make Apache support ASP. NET, You need to configure the httpd. conf file and add the following at the end of the file:

 
 
  1. #asp.net  
  2. LoadModule aspdotnet_module "modules/mod_aspdotnet.so" 
  3.  
  4. AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj \  
  5.          licx rem resources resx soap vb vbproj vsdisco webinfo  
  6.  
  7. < IfModule mod_aspdotnet.cpp>  
  8.  
  9.    # Mount the ASP.NET example application  
  10.    AspNetMount /active "D:/Program Files/Apache Group/Apache2/htdocs/active" 
  11.  
  12.    # Map all requests for /active to the application files  
  13.    Alias /active "D:/Program Files/Apache Group/Apache2/htdocs/active" 
  14.  
  15.    # Allow asp.net scripts to be executed in the active example  
  16. < Directory "D:/Program Files/Apache Group/Apache2/htdocs/active">  
  17. Options FollowSymlinks ExecCGI  
  18. Order allow,deny  
  19. Allow from all  
  20. DirectoryIndex Default.htm Default.aspx  
  21. < /Directory>  
  22.  
  23.    # For all virtual ASP.NET webs, we need the aspnet_client files  
  24.    # to serve the client-side helper scripts.  
  25.    AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) \  
  26.    "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4" 
  27. < Directory \  
  28.    "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">  
  29. Options FollowSymlinks  
  30. Order allow,deny  
  31. Allow from all  
  32.   < /Directory>  
  33.  
  34. < /IfModule>  

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 active Directory. After restarting Apache, you can experience the ASP. NET environment supported by 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.

  1. XML Web Service Method of ASP. NET
  2. XML data displayed on the ASP. NET page
  3. What is iframe asp. NET?
  4. ASP. NET lifecycle display
  5. Solve the Problem of ASP. net ajax script errors

Related Article

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.