답변감사합니다.
업그래이드는 텍스트큐브 1.6.1로 했습니다.
.htaccess 의 내용을 보니까 다음과 같이 있습니다.
#<IfModule mod_url.c>
#CheckURL Off
#</IfModule>
#SetEnv PRELOAD_CONFIG 1
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ rewrite.php [L,QSA]
그리고, config.php의 내용은 다음과 같습니다( ***표시는 제가 임의로 지운 것입니다)
ini_set('display_errors', 'off');
$database['server'] = 'localhost';
$database['database'] = '*****';
$database['username'] = '*****';
$database['password'] = '*****';
$database['prefix'] = 'tt_';
$service['type'] = 'single';
$service['domain'] = '*****';
$service['path'] = '';
$service['skin'] = 'coolant';
$service['favicon_daily_traffic'] = 10; // 10MB
//$serviceURL = '******' ; // 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.
이해하시는데 도움이 될지 . . .
부탁드립니다.