分类: LINUX
2009-12-29 16:07:25
./configure
, make
,
and make install
注意可执行程序
thttp在
/usr/local/sbin/目录下。
1.2 配置文件位于
/usr/local/www/,名字取为thttpd_config
,随你自己了,我是参考手册的
|
/usr/local/www/data中,注意
一定要去掉可执行权限,
执行: chmod -x my.html
否则会出现:
错误:403 forbidden.
The requested URL '/my.html' resolves to a file which is marked executable but is not a CGI file;
retrieving it is forbidden.
网上也有很多说法,可是好像都不适用于我这里,千辛万苦才找到以下解释:
原因:由于linux文件系统的权限问题,非cgi的文件请使用chmod -x去掉其可执行权限,否则web服务器
会认为它是cgi ( 比如index.html这样的文件 )
以上绿字摘自:http://blog.csdn.net/yaopingcs/archive/2009/08/24/4480224.aspx
1.4启动服务器
|