Linux

The requested URL /index.html was not found on this server. You don't have permission to access index.html on this server.

Naan 2015. 3. 31. 20:59
반응형

The requested URL /index.html was not found on this server. 라는 메세지와 함께

웹페이지 접속이 안된다.



아파치 권한 문제다.

# chorn -R apache:apache /var/www/html/

# chmod 711 -R /var/www/html


이렇게 했는데도 안된다면


# chcon -R -t httpd_user_content_t /var/www/html/

# chcon -R -t httpd_sys_content_t /var/www/html/


해주면 정상적으로 접속이 된다.


You don't have permission to access index.html on this server.

위 메시지도 동일하다.

위 방법으로 해주면 정상적으로 작동이 된다.

반응형