워드프레스 한글주소 인식 permalink

워드프레스 설치하고 나서 퍼머링크 설정 후

htaccess 설정까지 했는데 한글이나 한문 주소가 연결이 안되는 경우가 있다.

매번 까먹어서 남겨본다.

 

# 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>
<IfModule mod_url.c>
CheckURL On
ServerEncoding UTF-8
</IfModule>

# END WordPress

워드프레스 한글주소 인식 permalink
Scroll to top