风平
(风平)
新手上路

一般会员
UID 21630
精华
0
积分 47
帖子 47
金钱 47 喜悦币
威望 0
人脉 0
阅读权限 10
注册 2003-7-13 来自 山东
状态 离线
|
[推荐阅读] 我这个问题算逻辑题吗?
Actually you missed "Port 80" in your httpd.conf file
# Lemon, this is one part from my httpd.conf file. However, it gives you
# the most important information. Read it and modify yours accordingly.
# Good luck.
#
# Lemon, make sure to comment out the following two "Listen" lines
#Listen 3000
#Listen 12.34.56.78:80
<IfDefine SSL>
LoadModule ssl_module libexec/libssl.so
</IfDefine>
LoadModule php4_module libexec/libphp4.so
LoadModule perl_module libexec/libperl.so
# the following is used to support ASP. If you want your Linux to support it.
#-------------------------------------------------- Sun Chili!Soft ASP
LoadModule casp2_module /usr/local/casp/module/linux2_optimized/apache_1.3.27/eapi/mod_casp2.so
#-------------------------------------------------- Sun Chili!Soft ASP
AddModule mod_php4.c
AddModule mod_perl.c
#-------------------------------------------------- Sun Chili!Soft ASP
AddModule mod_casp2.c
#-------------------------------------------------- Sun Chili!Soft ASP
# Lemon, you missed " ort 80" in your httpd.conf file
Port 80
<IfDefine SSL>
Listen 80
Listen 443
</IfDefine>
User nobody
Group nobody
<IfModule mod_userdir.c>
UserDir public_html
</IfModule>
<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.pl index.php3 index.cgi index.asp index.htm default.html default.htm default.asp default.php index.phtml
</IfModule>
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>
HostnameLookups Off
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
AddHandler cgi-script .cgi
## Sun Chili!Soft ASP installer
AddHandler chiliasp .asp
AddHandler chiliasp .asa
CaspLib /usr/local/casp/asp-server-3026
|
|