首先,必須要有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下慢。