|
楼主 |
发表于 2024-3-19 14:30:17
|
显示全部楼层
大佬来自 LAN
我的系统是Win2000,按楼主的方法安装后不能启动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 "D:/usr/local/Apache Group/Apache2/htdocs/active"
# Map all requests for /active to the application files
Alias /active "D:/usr/local/Apache Group/Apache2/htdocs/active"
# 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:/Winnt/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
"C:/Winnt/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all |
|