1

주제: 하위폴더 인식하기

텍스트큐브 설치후 c 라는 폴더를 만들고 그 폴더를 웹상에서 읽을수 있게 하려고 하는데 에러가 납니다.
이곳에 정보를 찾아보니

RewriteRule ^c(/.*|$) - [L]

이런식으로 .htacces 파일을 변경하라고 해서 했는데도 안돼요 --;
도와주세요

지난번에 깔았을때는 변경했떠니 잘됐었는데, 1.8 깔고 나니까 안됩니다.
뭐가 문제인지 알려주세요.

내용은 이렇습니다.

#<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]
RewriteRule ^c(/.*|$) - [L]

busi (2010-10-20 16:07:33)에 의해 마지막으로 수정