- 论坛徽章:
- 0
|
我的APACHE服务器中出现了一个很诡异的问题!在设置的虚拟主机中有的虚拟主机可以打开其子目录并可打开子目录下文件,但是现在有一个虚拟主机现在无法访问其下的子目录中文件。超诡异。我贴一下httpd.conf文件中的虚拟主机配置:
<VirtualHost *>;
ServerName blog.xxx.com
DocumentRoot /home/ftphome/blog
ErrorLog /home/httplog/blog/error_log
TransferLog /home/httplog/blog/access_log
php_flag engine off
<Directory /home/ftphome/blog >;
Options ExecCGI FollowSymLinks Includes IncludesNOEXEC Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>;
</VirtualHost>;
现在主目录下的IMAGES目录中的所有图片文件都无法浏览!目录和文件权限都没有问题。 |
|