...

반응형

/var/www/html에 폴더가 아닌 다른곳에 폴더를 만들고 url을 연결 할 경우

You don't have permission to access on this server가 날 경우가 있습니다


에러 로그에서

AH01630: client denied by server configuration

위와 같은 에러가 날 경우


/etc/apache2/apache2.conf 에서 설정하신 부분의


Order allow,deny

Allow from all



Require all granted


로 바꿔고 아파치를 재시작 하세요


Alias /data /home/sinwho/data/

<Directory /home/sinwho/data>

AllowOverride All

Require all granted

</Directory>


위와 같이 하면 도메인주소/data 로 접속시 /home/sinwho/data/로 연결 됩니다

(도메인주소/data로만 접속시 똑같은 에러가 날수 있으니 파일을 하나 만들고 파일에 접근해보세요 ex.도메인주소/data/test.txt)


아파치 2.4 버전일 경우 위와 같이 하면 됩니다

반응형