|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
有些人号称用过十几种甚至几十种linux,向人谈论起来头头是到,好像懂的很多。
成绩:设置Apache,httpd.conf
增加假造目次
<IfModulealias_module>
Alias/sww/"C:/xampp/htdocs/test/"
</IfModule>
呈现限定权限会见,
Accessforbidden!
Youdonthavepermissiontoaccesstherequestedobject.Itiseitherread-protectedornotreadablebytheserver.
Ifyouthinkthisisaservererror,pleasecontactthewebmaster.
Error403
localhost
2011/8/2617:36:49
Apache/2.2.17(Win32)mod_ssl/2.2.17OpenSSL/0.9.8oPHP/5.3.4mod_perl/2.0.4Perl/v5.10.1
需增加目次设置
.代码以下:
<Directory"C:/xampp/htdocs/test/">
AllowOverrideNone
OptionsNone
Orderallow,deny
Allowfromall
</Directory>
实验:
1.将C:/xampp/htdocs/test/的/往失落,了局:没法启动apache
2.将C:/xampp/htdocs/test/的/改成,了局:没法启动apache
3.将C:/xampp/htdocs/test/改成"D:/Work/Booksir/BP/Code/User_Booksir_com_cn/trunk/",了局:没法启动apache
4.C:/xampp/htdocs/test/文件夹有Everyone完整把持权限,给D:/Work/Booksir/BP/Code/User_Booksir_com_cn/trunk加上Everyone的完整把持权限,了局:仍没法启动apache
5.将"D:/Work/Booksir/BP/Code/User_Booksir_com_cn/trunk/"的/往失落,/sww/的/往失落,了局:乐成启动apache
结论:
最好
Alias/sww"D:/Work/Booksir/BP/Code/User_Booksir_com_cn/trunk"
<Directory"D:/Work/Booksir/BP/Code/User_Booksir_com_cn/trunk">
前面都不要加/,都不要利用,如许对照保险
#Ifyouincludeatrailing/on/webpaththentheserverwill
#requireittobepresentintheURL.Youwillalsolikely
#needtoprovidea<Directory>sectiontoallowaccessto
#thefilesystempath.
虽然Linux桌面应用发展很快,但是命令在Linux中依然有很强的生命力。Linux是一个命令行组成的操作系统,精髓在命令行。 |
|