본문 바로가기

개발관련/서버

apache 2.4 mod_rewrite사용위한 버철호스트 설정

서버 이관중 생긴 문제

apache 2.2 코드이그나이터 3.0 설정중 mod_rewrite를 사용하기 위해 directory 설정을 바꾼다

<Directory />

    Options FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

    AllowOverride All

    Require all granted

</Directory>


Require all granted가 핵심임


서버 설정중 코드이그나이터 3.0 아파치 2.4.3에서 서버 이관후 mod_rewrite 에서 문제생김

아파치 directory 에 

<Directory />

    AllowOverride All

    Options None

    Require all granted

</Directory>


버철 호스트에
    <Directory "홈디렉토리">
        Options Indexes FollowSymLinks
        AllowOverride All

        Require all granted
    </Directory>

혹시 나중에 또 할까봐 남겨놓음

'개발관련 > 서버' 카테고리의 다른 글

저장소 추가  (0) 2017.07.21
리눅스 확인  (0) 2017.07.21
리눅스 사용시 주로 사용되는 명령어들  (0) 2017.03.08
centos 서비스 등록  (0) 2016.07.29
리눅스 폴더 전송  (0) 2016.06.27