程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 徹底放棄IIS讓Apache也支持ASP.NET

徹底放棄IIS讓Apache也支持ASP.NET

編輯:.NET實例教程
 apache是目前廣泛使用的一種網絡服務器程序,不僅在UNIX/Linux平台上被大量使用,而且在Windows平台上也有許多站點放棄了IIS而轉向apache。.NET是微軟推出的功能強大的開發技術,其目標就是與Java抗衡。ASP.NET非常適合於中小企業的Web應用,其性能較ASP3.0有了極大的提高。下面就介紹讓apache支持ASP.Net的辦法。

  首先,必須要有Windows環境和.NET Framework的支持。此外還建議安裝.NET開發工具如.NET Framework SDK或者VisualStudio.NET。需要注意的是Windows的版本應為2000、2003和XP。Win9X系列不能安裝.Net Framework。然後需要安裝Apache。應該使用Win32平台的apache,版本2.0以上。推薦使用2.0.51版本。

  下面要下載並安裝apache環境下的ASP.Net模塊。下載地址:http://www.apache.org/dist/httpd/mod_aspdotnet/mod_ASPdotnet-2.0.0.msi下載完成後雙擊打開,一路Next即可安裝完成。

  為了便於管理,我們在htdocs目錄下新建一個active目錄,專門存放.ASPx文件。現在需要對httpd.conf文件作一定配置,在文件末尾添加:

  #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

  <IfModule mod_ASPdotnet.cpp>

  # Mount the ASP.Net example application

  ASPNetMount /active "D:/Program Files/Apache Group/apache2/htdocs/active"

  # Map all requests for /active to the application files

  Alias /active "D:/Program Files/Apache Group/apache2/htdocs/active"

  # Allow ASP.Net scripts to be executed in the active example

  <Directory "D:/Program Files/Apache Group/apache2/htdocs/active">


  Options FollowSymlinks ExecCGI

  Order allow,deny

  Allow from all

  DirectoryIndex Default.htm Default.ASPx

  </Directory>

  # 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+)_(\d+)_(\d+)/(.*) \

  "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NetClIEntFiles/$4"

   <Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NetClIEntFiles">

  "C:/Windows/Microsoft.NET/Framework/v*/ASP.NetClIEntFiles">

  Options FollowSymlinks

  Order allow,deny

  Allow from all

  </Directory>

  </IfModule>  

  其中D:/Program Files/Apache Group/Apache2是Apache的安裝目錄,應根據實際情況更改。現在可以在active目錄下放上ASP.NET探針。重啟Apache之後,即可體驗apache下的ASP.Net了。

  由於IIS和Apache下的ASP.NET都是運行在Common Language Runtime(CRL)的基礎上,因此apache環境下的ASP.Net程序的運行速度不會比在IIS下慢。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved