그래서 Windows에 WAMP를 설치하여 Apache와 PHP를 실행했으며 네트워크 공유 \\ 10.0.0.177 \ FMS Studios \ Websites로 이동하는 가상 호스트를 만들어야합니다. 도메인에 갈 때 403 오류가 발생합니다. 이것은 내가 내 아파치 - vhosts.conf 파일에있는 것입니다 :네트워크 공유를 사용하여 가상 호스트를 만드는 방법은 무엇입니까?
<VirtualHost *:80>
ServerName tree.fmsds.xyz
DocumentRoot "\\10.0.0.177\FMS Studios\Websites"
<Directory "\\10.0.0.177\FMS Studios\Websites">
AllowOverride All
Require all granted
Order deny,allow
</Directory>
</VirtualHost>
그것도 WAMP의 서버 관리자의 가상 호스트로 등록하지 않습니다 ..
WAMP does not see my virtualhost.
제거'주문 거부, 허용'은 아파치 2.2 구문을 허용하고 아파치 2.4 구문 인'모두 승인 됨 '과 잘 섞이지 않는다. – RiggsFolly
여전히 403 오류. – Flyingmcsquid