본문 바로가기

프로그램 경험/운영체제

[Apache] 워드 프레스 Permalink 오류

워드 프레스의 permalink를 바꿔서 하면 꼭 오류가 발생한다.
이유를 찾아보니 우선 아파치에 mod_rewrite 모듈이 설치 되어 있어야 하고
설치된 후에 vhost의 옵션에 아래와 같이 되어 있는것을 
------------------------------------------------------------
<Directory "/">
                Allow from all
                Options +Indexes
</Directory>
------------------------------------------------------------

이렇게 바꿔주니 된다.
------------------------------------------------------------
<Directory "/">
        AllowOverride All
        Order allow,deny
        Allow from all
</Directory>
------------------------------------------------------------