루트 디렉토리 내에 가상 호스트를 설정하고 싶습니다. 예를 들어,
내 프로젝트가 C:/myproject
나는 http://localhost/myproject
편집하다:
나는 안에 별명을 만들었 어. httpd-vhosts.conf
그러나 나는 권한이 없다.
<VirtualHost *:80>
DocumentRoot "C:/apache-2.2/htdocs"
ServerName localhost
Alias /test "D:\arbol\documentos\test"
</VirtualHost>
이 코드가 권한을 부여하는 적절한 방법 아래에 있습니까?
<VirtualHost *:80>
DocumentRoot "C:/apache-2.2/htdocs"
ServerName localhost
Alias /test "D:\arbol\documentos\test"
<Directory "D:\arbol\documentos\test">
allow from all
order allow,deny
AllowOverride All
</Directory>
</VirtualHost>
답변
이 시도:
<Directory "D:\arbol\documentos\test">
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>