wamp 설정 시 랜 오류 403 권한 없 음

2595 단어
원본 주소:http://www.nnbbxx.net/post-1426.html
설치 한 후에 httpd. conf 를 열 면 원본 설정 이 아래 와 같 습 니 다.원래 의 이 설정 은 스마트 이 컴퓨터 에 접근 할 수 있 고 다른 사람 은 접근 할 수 없습니다.
기본 설정 을 보면 두 개의 동일 한 설정 이 나타 납 니 다.같은 것 같 습 니 다.또한 2.5 최신 버 전의 httpd. conf 파일 은 기본적으로 메모 장 으로 열 려 줄 이 바 뀌 지 않 았 습 니 다.아부 지 를 속이다
하지만 notepad + 를 사용 하면 혹은 sublime 2 나 3 열 면 줄 바 뀌 는 거 볼 수 있어 요.
#
# DocumentR.........
#    N   
#..............and aliases may be used to point to other locations.
#
DocumentRoot "D:/wamp/www/"
#
# Each directory.........
#    N   
#..............its subdirectories). 
#
# First, we configure the "default" to be a very restrictive set of 
# features.  
#
<Directory />
    Require all denied
</Directory>
#
# Note that fro.........
#    N   
#..............expect, make sure that you have specifically enabled it
# below.
#
<Directory "D:/wamp/www/">
    #
    # Possible values for the Options directive are "None", "All",
    #    N   
    # for more information.
    #
    Options Indexes FollowSymLinks
    #
    # AllowOverride.........
    #    N   
    #..............ileInfo AuthConfig Limit
    #
    AllowOverride all
    #
    # Controls who can get stuff from this server.
    #
#   onlineoffline tag - don't remove
    Require local
</Directory>

위 에서 도 위 설정 안 된다 고 했 잖 아.다음은 어떻게 고 치 는 지 말씀 드 리 겠 습 니 다.위 에 나 는 이미 두 곳 을 붙 였 다. 그러면 우 리 는 바로 이 두 곳 을 수정 해 야 한다.
아래 설정 방법 을 보 세 요.
DocumentRoot "D:/wamp/www/"
<Directory />
    AllowOverride none
    order deny,allow
    allow from all
#    Require all denied
</Directory>

<Directory "D:/wamp/www/">
    Options Indexes FollowSymLinks
    AllowOverride all
    order deny,allow
    allow from all
#    Require local
</Directory>

위 에 코드 보고 알 겠 지?두 곳 모두 다른 사람 을 수정 해 야 방문 할 수 있 고 한 곳 만 수정 하면 다른 사람 이 방문 할 때 403 현상 이 나타난다.
위의 코드 는 Require local 주석 을 삭제 하고 AllowOverride all, order deny, allow, allow from all 세 줄 을 추가 하면 다른 사람 이 접근 할 수 있 습 니 다.
근 데 아무래도 양쪽 에서 아 는 게 좀 남 는 것 같 아 요.그 럴 수 있어.위 에 것 만 남 겨 두 셔 도 됩 니 다.
DocumentRoot "D:/wamp/www/"
<Directory />
    AllowOverride none
    order deny,allow
    allow from all
#    Require all denied
</Directory>
      。
<Directory "D:/wamp/www/">
    Options Indexes FollowSymLinks
    AllowOverride all
    order deny,allow
    allow from all
#    Require local
</Directory>

나 는 이렇게 이 문 제 를 해결 했다.인터넷 에서 도 해결 방법 을 찾 지 못 하 니 너무 전문 적 인 것 같 습 니 다.나 못 알 아 보 겠 지.

좋은 웹페이지 즐겨찾기