2016-06-23 42 views
0

我无法再访问我的虚拟主机(只有默认的主机,本地主机)。这让我:403禁止 - 许可 - VHOSTS

故宫

您没有权限访问/在此服务器上。

我已经加载模块在我的httpd.conf中,我在Apache 2.4上,并且我已经检查了所有权限文件夹(chmod 755)。

我的httpd-vhosts.conf文件:

# Virtual Hosts 
# 
# Required modules: mod_log_config 

# If you want to maintain multiple domains/hostnames on your 
# machine you can setup VirtualHost containers for them. Most configurations 
# use only name-based virtual hosts so the server doesn't need to worry about 
# IP addresses. This is indicated by the asterisks in the directives below. 
# 
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs/2.4/vhosts/> 
# for further details before you try to setup virtual hosts. 
# 
# You may use the command line option '-S' to verify your virtual host 
# configuration. 

# 
# VirtualHost example: 
# Almost any Apache directive may go into a VirtualHost container. 
# The first VirtualHost section is used for all requests that do not 
# match a ServerName or ServerAlias in any <VirtualHost> block. 
# 
Listen 80 

<VirtualHost *:80> 
ServerName localhost 
DocumentRoot "/Library/WebServer/Documents" 
</VirtualHost> 

<VirtualHost *:80> 
    DocumentRoot "/Users/POlo/Sites/polohome" 
    ServerName polohome 
    # Set access permission 
    <Directory "/Users/POlo/Sites/polohome"> 
    DirectoryIndex index.html index.php 
    Require all granted 
    </Directory> 
</VirtualHost> 

<VirtualHost *:80> 
     DocumentRoot "/Users/POlo/Sites/aeglos" 
     ServerName aeglos 
     ErrorLog "/private/var/log/apache2/aeglos.local-error_log" 
     CustomLog "/private/var/log/apache2/aeglos.local-access_log" common 

     <Directory "/Users/POlo/Sites/aeglos/"> 
       AllowOverride All 
       Order allow,deny 
       Allow from all 
     </Directory> 
</VirtualHost> 

我发现的唯一的事情就是在httpd.conf文件更改DirectoryIndex的时候,它使我的PHP行但不执行它。而在httpd-vhosts.conf文件中添加directoryIndex什么都不做。

感谢您的帮助。

更新:不明白为什么..但它工作时切换到PHP 5.6,PHP 7.0.6仍然呈现403禁止页面。

回答

0

(发表于OP)

升级我的mac之后,我的php切换器不能工作,原因是php7_module没有在httpd.conf中调用。