주제: 카테고리 클릭시 특정 카테고리만 출력됨
제 블로그 문제는 아니고, 제가 만든 스킨을 사용하시는 분께서 문의주신 내용인데..
아무래도 제 머리로는 해결이 안되어서 -_-;;;
문제가 발생되는 사이트 주소는
http://agd1042.isfreeweb.com/
이구요~
발생되는 현상은
어느 카테고리를 눌러도 특정 카테고리만 출력이 되고 있습니다.
- "사랑이야기" 카테고리만 출력이 되고 있네요
특수문자 문제인가 해서 제 테스트 블로그에 적용해 보아도 제꺼에선 멀쩡하게 잘 되구요...;;
해결해 주실 수 있는 분이 계실까요?
일단 .htaccess와 config.php 파일 내용을 올려드립니다.
.htaccess는
#<IfModule mod_url.c>
#CheckURL Off
#</IfModule>
#SetEnv PRELOAD_CONFIG 1
RewriteEngine On
RewriteBase /tc/
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ rewrite.php [L,QSA]구요
config.php는
<?php
ini_set('display_errors', 'off');
$database['server'] = 'localhost';
$database['database'] = '*******';
$database['username'] = '******';
$database['password'] = '*****';
$database['prefix'] = 'tc';
$service['type'] = 'path';
$service['domain'] = 'agd1042.isfreeweb.com';
$service['path'] = '/tc';
$service['skin'] = 'coolant';
$service['favicon_daily_traffic'] = 10; // 10MB
//$serviceURL = 'http://agd1042.isfreeweb.com/tc' ; // for path of Skin, plugin and etc.
//$service['reader'] = true; // Use Textcube reader. You can set it to false if you do not use Textcube reader, and want to decrease DB load.
//$service['debugmode'] = true; // uncomment for debugging, e.g. displaying DB Query or Session info
//$service['pagecache'] = false; // uncomment if you want to disable page cache feature.
//$service['debug_session_dump'] = true; // session info debuging.
//$service['debug_rewrite_module'] = true; // rewrite handling module debuging.
//$service['session_cookie_path'] = $service['path']; // for avoiding spoiling other textcube's session id sharing root.
//$service['allowBlogVisibilitySetting'] = true; // Allow service users to change blog visibility.
?>입니다.
뭐가 문제인 걸가요?