본문으로 바로가기

워드프레스를 위한 설정

category 워드프레스/WP 팁&테크 2013. 7. 4. 04:58

워드프레스 사용시 필요에 따라 추가하거나 수정해야 할 설정들에 대하여 알아봅니다.

숫자형 Permalink 사용

웹사이트의 permalink로서 숫자(/archives/%post_id%)를 사용할 경우, 다음과 같이 아파치 설정 파일을 수정해야 한다.

vi /etc/httpd/conf/httpd.conf

  # Control access to UserDir directories.  The following is an example
  # for a site where these directories are restricted to read-only.
  #
  #<Directory /home/*/public_html>
  #    AllowOverride FileInfo AuthConfig Limit
  #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  #    <Limit GET POST OPTIONS>
  #        Order allow,deny
  #        Allow from all
  #    </Limit>
  #    <LimitExcept GET POST OPTIONS>
  #        Order deny,allow
  #        Deny from all
  #    </LimitExcept>
  #</Directory>
  <Directory /home/*/public_html>
      AllowOverride FileInfo AuthConfig Limit
      Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
      <Limit GET POST OPTIONS>
          Order allow,deny
          Allow from all
      </Limit>
  </Directory>

Apache와 php 연동

Apache와 php 연동을 위해서는 /etc/httpd/conf.d/php.conf 파일을 다음과 같이 수정한다.

vi /etc/httpd/conf.d/php.conf

  # Uncomment the following line to allow PHP to pretty-print .phps
  # files as PHP source code:
  #
  AddType application/x-httpd-php-source .phps

.htaccess 사용

<Directory /home/*/public_html> 이나 워드프레스 디렉토리에 AllowOveride All 로 변경해야 .htaccess 파일을 사용할수있다.