- 论坛徽章:
- 0
|
centos5.2 默认安装apache,php
关闭selinux
<Directory /home/folboy/study>
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
DocumentRoot /home/folboy/study
Options FollowSymLinks
ServerName www.we219.cn
#CustomLog /home/flowing/customlog
ErrorLog /home/flowing/errorlog
</VirtualHost>
[root@du study]# cat /home/flowing/errorlog
[Fri Aug 22 09:48:40 2008] [error] [client 125.122.50.104] (13)Permission denied: access to /a.php denied
[Fri Aug 22 09:50:46 2008] [error] [client 125.122.50.104] (13)Permission denied: access to / denied
[Fri Aug 22 09:50:47 2008] [error] [client 125.122.50.104] (13)Permission denied: access to / denied |
|