本文介绍了客户端被服务器配置拒绝的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试将 kohana 3 项目设置为虚拟主机.
I try to setup kohana 3 project as virtual host.
配置:
<VirtualHost *:80>
DocumentRoot "D:/Devel/matysart/matysart_dev1"
ServerName matysart-one.local
ServerAlias www.matysart-one.local
DirectoryIndex index.php
</VirtualHost>
错误 (403):
[client 127.0.0.1] 客户端被服务器配置拒绝:D:/Devel/matysart/matysart_dev1/
有人可以帮忙吗?
推荐答案
就我而言,我修改了目录标签.
In my case, I modified directory tag.
来自
<Directory "D:/Devel/matysart/matysart_dev1">
Allow from all
Order Deny,Allow
</Directory>
致
<Directory "D:/Devel/matysart/matysart_dev1">
Require local
</Directory>
而且它确实有效.Apache 2.4.2 似乎有所改变.
And it seriously worked. It's seems changed with Apache 2.4.2.
这篇关于客户端被服务器配置拒绝的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!