ztusf 发表于 2024-3-19 14:27:44

1

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版本。下载地址:http://apache.freelamp.com/httpd ... in32-x86-no_ssl.msi具体的安装过程请参阅其他文章,本文不再赘述。

  下面要下载并安装Apache环境下的ASP.NET模块。下载地址:http://www.apache.org/dist/httpd ... 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


# 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



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"


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

Options FollowSymlinks

Order allow,deny

Allow from all



  其中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下慢。

ztusf 发表于 2024-3-19 14:27:50

由于IIS和Apache下的ASP.NET都是运行在Common Language Runtime(CRL)的基础上,因此Apache环境下的ASP.NET程序的运行速度不会比在IIS下慢。

实际上并不是这样的,在Apache中实现对ASP.NET的支持,其效率非常低下,基本不具备实际应用的条件。
如果需要对PHP和ASP的同时支持,目前来讲IIS是最好的选择。

ztusf 发表于 2024-3-19 14:28:02

发这帖只是告诉大家 Apache也能支持ASP.NET
本人觉得IIS支持ASP ASP.NET是没话说的
PHP还是Apache 安装容易操作简单 支持PHP性能更佳

ztusf 发表于 2024-3-19 14:28:39

在Windows平台上,使用IIS整合PHP比使用APACHE整合PHP的性能要高。

这也是为什么我们一直推荐在Windows平台使用IIS的作为Web Server原因。

ztusf 发表于 2024-3-19 14:29:34

原帖由 Nanu 于 2006-2-21 20:45 发表
在Windows平台上,使用IIS整合PHP比使用APACHE整合PHP的性能要高。

这也是为什么我们一直推荐在Windows平台使用IIS的作为Web Server原因。

你说的我很赞同 在win下还是IIS

ztusf 发表于 2024-3-19 14:30:17

我的系统是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

ztusf 发表于 2024-3-19 14:30:33

我的 xp -sp2只要一安IIS就系统崩溃!!!!
天啊!!
谁知道哪里有那种想php安装这么方便的网上商城系统啊!!!

ztusf 发表于 2024-3-19 14:31:28

如果是安装到LINUX上数据库用MYSQL怎么做呢?

ztusf 发表于 2024-3-19 14:31:49

学习中
页: [1]
查看完整版本: 1