注:注意上面方法只限于在windows下 并且裝了Framework一般win7已經自帶有了
1、首先 下載一個mod_aspdotnet-2.2.0.2006-setup-r2.msi
2、安裝好后在apache的moudles目錄會生成一個mod_aspdotnet.so文件
3、修改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>
AspNetMount / "D:/xampp/xampp/htdocs/"
Alias / "D:/xampp/xampp/htdocs/"
<Directory "D:/xampp/xampp/htdocs/">
Options FollowSymlinks ExecCGI
Order allow,deny
Allow from all
DirectoryIndex index.htm index.aspx
</Directory>
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">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>
#asp.net
其中紅色為你網站放置的目錄
4、重新啟動apache ok成功
看看其它文章
按照網上的說明嘗試裝IIS,好歹裝上了可是不好使,看來xp home是不支持IIS,于是轉向Apache。
下載安裝好Apache 2.2.9 http://www.apache.org/,一切正常,又發現不支持asp和.net的程序,暈;
google一番,找到Sun Java System Active Server Pages 4.0
http://www.sun.com/software/chilisoft/,
下載下來安裝好,重啟機器,ok,asp沒問題了;
繼續google,找到Apache下面的一個項目mod_aspdotnet,發現Apache已經不支持此項目了,
此項目改投sourceforge,mod_aspdotnet-2.2.0 http://sourceforge.net/projects/mod-aspdotnet,
下載安裝,修改apache的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 "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/active"
# Map all requests for /active to the application files
Alias /active "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/active"
# Allow asp.net scripts to be executed in the active example
<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/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">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>
以上部分代碼,注意不要有空行,相關路徑按照實際情況填寫
又又發現此版本只支持.net framework1.1,于是卸掉2.0重裝1.1,ok了,只是對.net 2.0的語法不支持
。
最終測試成功的環境
windows xp home edition
apache 2.2.9
sun one asp 4.0
.net frmawork 1.1
mod_aspdotnet 2.2.0
萬惡的microsoft
KO我們的安裝就可以了,大家看看可以正常運行不哦。