> 백엔드 개발 > PHP 튜토리얼 > Apache 가상 도메인 이름 설정 정보

Apache 가상 도메인 이름 설정 정보

WBOY
풀어 주다: 2016-07-28 08:29:34
원래의
1222명이 탐색했습니다.

가상 도메인 이름 설정

1. 호스트 파일 수정: C:WindowsSystem32driversetc, 추가(예:

localhost doma.com
로그인 후 복사

2)

<Directory />
    AllowOverride none
    Require all denied
</Directory>
로그인 후 복사
<Directory />
    #AllowOverride none
    #Require all denied

   AllowOverride all
    Order deny,allow
    Allow from all
</Directory>
로그인 후 복사

입니다. 3. https-vhosts.conf 파일을 수정하고 추가합니다. 예를 들어
<VirtualHost *:80>
    ServerAdmin doma.com
    DocumentRoot "c:/wamp/www/doma"
    ServerName doma.com
    ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error.log"
    CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>
로그인 후 복사
Apache 서비스를 다시 시작하고 도메인 이름 doma.com에 액세스합니다.

그런데 오류가 발생했습니다 문제, 로컬호스트 접속 문제, 다른 디렉토리에서 보고된 오류

403 Forbidden You don't have permission to access / on this server
로그인 후 복사
404 Forbidden The requested URL  was not found on this server
로그인 후 복사
오류를 해결할 수 없습니다. 원본 수정 사항을 삭제하고 서버를 다시 시작해도 위 오류가 계속 발생합니다. 이해할 수 없습니다

혈액 칼슘 https-vhosts.cong 파일이 필요합니다. 그 파일에 모두

<VirtualHost *:80>
  ...
</VirtualHost>
로그인 후 복사
주석을 달고, httpd.cong 파일을 수정합니다.

<Directory />
    #AllowOverride none
    #Require all denied

    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order deny,allow
    Allow from all
</Directory>
로그인 후 복사
문제는 해결됨, 가상도메인 이름 설정실패, 해결방법 고민 필요

이상에서는 관련 측면을 포함하여 Apache 가상 도메인 이름의 설정을 소개했습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿