1

주제: TC 1.7.6과 1.7.5 htaccess가 바뀌었는데..

TC 1.7.6로 업데이트되면서 htaccess가 변경되었는데..(업데이트 설명에는 없습니다만..)

그것 때문인지, 잘못된 주소로 접근을 하면 HTTP 500 에러 메시지가 뜨네요?

TC 1.7.5까지는 잘못된 주소로 접근하면 error.php파일로 자동으로 이동 되던거로 기억합니다.

TC Cron의 동력원이 error.php 파일인걸로 아는데..

그래서 그런지 제 블로그의 모블로그가 업데이트 되지 않았던거로 추측되네요.

어떻게 된건지 설명 부탁드립니다.

htaccess파일도 추가합니다 smile

1.7.5 htaccess
#<IfModule mod_url.c>
#CheckURL Off
#</IfModule>
#SetEnv PRELOAD_CONFIG 1
RewriteEngine On
RewriteBase /
RewriteRule ^(thumbnail)/([0-9]+/.+)$ cache/$1/$2 [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(cache)+/+(.+[^/])\.(cache|xml|txt|log)$ - [NC,F,L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ rewrite.php [L,QSA]

1.7.6 htaccess
#<IfModule mod_url.c>
#CheckURL Off
#</IfModule>
#SetEnv PRELOAD_CONFIG 1
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(cache)+/+(.+[^/])\.(cache|xml|txt|log)$ - [NC,F,L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(thumbnail)/([0-9]+/.+)$ cache/$1/$2 [L]
RewriteRule ^(.*)$ rewrite.php [L,QSA]