2016-09-22 2 views
0

약간의 문제가 있습니다.MAMP 500 내부 서버 오류

2 개의 가상 호스트 "web-backend.local"및 "oplossingen.web-backend.local"을 만들었습니다.

그러나 나는 항상 내가 잘못 뭐하는 거지 "500 내부 서버 오류"

있나요?

호스트 파일 :

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

아파치 - 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

아파치 로그와 PHP 로그에보고하십시오.

-1

각각의 가상 호스트에서 아파치 - vhosts.conf 파일에서 다음 줄을 제거합니다

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

이 나를 위해 일한 : D