2016-09-22 83 views
0

我遇到了一些問題。MAMP 500內部服務器錯誤

我做了兩個虛擬主機「web-backend.local」和「oplossingen.web-backend.local」。

但我總是有一個「500內部服務器錯誤」

我在做什麼錯了?

Hosts文件:

## 
# Host Database 
# 
# localhost is used to configure the loopback interface 
# when the system is booting. Do not change this entry. 
## 
127.0.0.1 localhost 
255.255.255.255 broadcasthost 
::1    localhost 
fe80::1%lo0  localhost 

# MAMP VirtualHost Mappings 
127.0.0.1 web-backend.local 
127.0.0.1 oplossingen.web-backend.local 

的httpd-vhosts.conf:

# 
# Virtual Hosts 
# 
# 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.2/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. 

# 
# Use name-based virtual hosting. 
# 
#NameVirtualHost *:80 

# 
# 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. 
# 

<VirtualHost web-backend.local:* > 
DocumentRoot "/Users/yawuarsernadelgado/Documents/web-backend/cursus" 
ServerName web-backend.local 
<Directory "/Users/yawuarsernadelgado/Documents/web-backend/cursus"> 
    AllowOverride All 
    Require all granted 
    Options +Indexes 
    IndexOptions NameWidth=* 
</Directory> 
ServerAlias web-backend.local 
</VirtualHost> 

<VirtualHost oplossingen.web-backend.local:* > 
DocumentRoot "/Users/yawuarsernadelgado/Documents/web-backend/oplossingen" 
ServerName oplossingen.web-backend.local 
<Directory "/Users/yawuarsernadelgado/Documents/web-backend/oplossingen"> 
    Allow from all 
    Require all granted 
    Options +Indexes 
    IndexOptions NameWidth=* 
</Directory> 
</VirtualHost> 

回答

0

試着查看您的Apache日誌和你的PHP日誌。

-1

從每個虛擬主機拆下的httpd-vhosts.conf文件下列行:

<Directory "/Users/yawuarsernadelgado/Documents/web-backend/cursus"> 
    AllowOverride All 
    Require all granted 
    Options +Indexes 
    IndexOptions NameWidth=* 
</Directory> 

爲我工作:d