[워드프레스] 아파치 .htaccess RewriteRule NGINX 적용



워드프레스에서 사용되는 Apache 용 .htaccess 사용되는 리디렉션을 nginx 에 적용하는 방법입니다.


# BEGIN WordPress

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

</IfModule>


# END WordPress



아래 처럼 한줄을 추가해주면 됩니다.


server {

    ...

    location / {

        index    index.html index.htm index.php;

        try_files $uri $uri/ /index.php?$args;

    }

}


생각보다는 간단하네요~


블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,