我有个asp.net3.5程序想部署到该上面,怎么做,网上找个个
-------------------
#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 applicationAspNetMount /active "C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\active"
# Map all requests for /active to the application filesAlias /active "C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\active"
# Allow asp.net scripts to be executed in the active exampleOptions FollowSymlinks ExecCGIOrder allow,denyAllow from allDirectoryIndex 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"
"C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">Options FollowSymlinksOrder allow,denyAllow from all
-----------------------------------------
怎么不行啊!!!!!!!!!谢谢回复!

解决方案 »

  1.   

    去掉那段话!访问loclhost的,是不是那里写错了?
      

  2.   

    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 /wwwroot "E:/Work/BoSiERP/BoSiWebSite"
        # Map all requests for /active to the application files
        Alias /wwwroot "E:/Work/BoSiERP/BoSiWebSite"
        # Allow asp.net scripts to be executed in the active example
        <Directory "E:/Work/BoSiERP/BoSiWebSite">
            Options FollowSymlinks ExecCGI
            Order allow,deny
            Allow from all
            DirectoryIndex index.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$3/ASP.NETClientFiles/$4"
        <Directory "C:/Windows/Microsoft.NET/Framework/v3.5/ASP.NETClientFiles">
            Options FollowSymlinks
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>