구체적인 방법은 다음과 같습니다.
1. "가상 디렉터리 구성 파일" httpd-vhosts.conf
파일 경로: wampbinapacheapache2.4.9confextrahttpd-vhosts.conf
다음 구성을 변경합니다.
# Virtual hosts # Include conf/extra/httpd-vhosts.conf
를
# Virtual hosts Include conf/extra/httpd-vhosts.conf
2. 가상 디렉터리에 액세스할 수 있도록 설정하세요
파일 경로: wampbinapacheapache2.4.9confextrahttpd-vhosts.conf
다음 구성을 변경하세요.
<Directory /> AllowOverride none Require all denied </Directory>
를
<Directory /> AllowOverride none </Directory>
3으로 변경하세요. 가상 디렉터리
파일 경로 :wampbinapacheapache2.4.9confextrahttpd-vhosts.conf
가상 디렉터리 추가
<VirtualHost *:80> ServerAdmin webmaster@web.shop.com DocumentRoot "D:/_HelloWorld/01_MyProjects/06_PHP/01_Web/Product/Source/Shop" ServerName web.shop.com ErrorLog "logs/web.shop.com-error.log" CustomLog "logs/web.shop.com-access.log" common </VirtualHost>
4. 아파치를 다시 시작하세요
완료!
추천 튜토리얼: apache부터 마스터까지
위 내용은 아파치 가상 디렉터리를 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!