주제: 태그 선택시 오류 - 페이지를 표시할 수 없습니다.
http://blog.dasomtree.com 를 운영하고 있습니다.
그런데 처음에는 잘되었는데,
갑자기 카테고리를 선택하면 페이지를 표시할 수 없다고 나옵니다.
예를 들면 이야기 카테고리를 선택하면
"http://blog.dasomtree.com/ds/category/이야기"
결과 -> 페이지를 표시할 수 없습니다.
.htaccess 가 있는 것은 확인했습니다.
내용은 아래와 같습니다.
#<IfModule mod_url.c>
#CheckURL On
#</ifModule>
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:REDIRECT_SURI} !^$
RewriteRule (.*) - [L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [L]
RewriteRule ^$ blog/index.php [E=SURI:1,L]
RewriteRule ^[-[:alnum:]]+/*$ blog/index.php [E=SURI:1,L]
RewriteRule ^[-[:alnum:]]+/+[0-9]+$ blog/item.php [E=SURI:1,L]
RewriteRule ^favicon\.ico$ blog/favicon.ico.php [E=SURI:1,L]
RewriteRule ^[-[:alnum:]]+/+favicon\.ico$ blog/favicon.ico.php [E=SURI:1,L]
RewriteRule ^index\.gif$ blog/index.gif.php [E=SURI:1,L]
RewriteRule ^[-[:alnum:]]+/+index\.gif$ blog/index.gif.php [E=SURI:1,L]
RewriteCond %{QUERY_STRING} (^|&)pl=([0-9]+)
RewriteRule ^([-[:alnum:]]+)/+index\.php$ $1/%2 [NE,L]
RewriteRule ^[-[:alnum:]]+/+index\.php$ blog/index.php [E=SURI:1,L]
RewriteRule ^[-[:alnum:]]+/+index\.xml$ blog/rss/index.php [E=SURI:1,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule !^(blog|cache)/ - [L]
RewriteRule ^[-[:alnum:]]+/+(thumbnail)/([0-9]+/.+) cache/$1/$2 [E=SURI:1,L]
RewriteRule ^[-[:alnum:]]+/+(entry|attachment|category|keylog|tag|search|plugin)/? blog/$1/index.php [E=SURI:1,L]
RewriteRule ^[-[:alnum:]]+/+(.+)/[0-9]+$ blog/$1/item.php [E=SURI:1,L]
RewriteRule ^[-[:alnum:]]+/+(.+)$ blog/$1/index.php [E=SURI:1,L]