[워드프레스] 아파치 .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;
}
}
생각보다는 간단하네요~
반응형
'워드프레스' 카테고리의 다른 글
[워드프레스] 관리자 비밀번호 분실시 재설정 방법 (0) | 2018.11.28 |
---|---|
[워드프레스] NGINX 유저 설정 (0) | 2018.11.22 |
[워드프레스] 서버 이전 데이터베이스 연결 중 오류 (0) | 2018.11.21 |
워드프레스 디렉토리 리다이렉션 (0) | 2018.04.13 |
워드프레스 디렉토리 변경방법 (0) | 2018.04.13 |