使用 Apache 執行 ASP.NET

iDotNetSpace發表於2010-03-04

使用 Apache 執行 ASP.NET

 mod_aspdotnet 2.0.0 模組實現。

配置Apache: 

#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 "J:/Working/BIVSS" 
# Map all requests for /active to the application files 
Alias /active "J:/Working/BIVSS" 
# 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+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4" 

Options FollowSymlinks 
Order allow,deny 

Allow from all 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-628589/,如需轉載,請註明出處,否則將追究法律責任。

相關文章