묻고답하기
.htaccess좀 봐주세요.
2010.12.17 11:03
제 주소가 todos.co.kr인데요. core 1.4.4.2로 업데이터후 첫화면이 이상하게 떠요.
todos.co.kr/xe로 하면 정상으로 나오구요.
어떻게 해야할지 모르겠네요.
RewriteEngine On
RewriteRule ^index.php$ ./xe/index.php [L]
# reserve XE Layout Template Source File (*.html)
RewriteRule ^(layouts|m.layouts)/(.+)/(.+)\.html$ ./xe/index.php [L]
# static files
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)/files/(member_extra_info|attach|cache|faceOff)/(.*) ./xe/files/$2/$3 [L]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)/(files|modules|common|widgets|widgetStyle|layouts|m.layouts|addons)/(.*) ./xe/$2/$3 [L]
# rss , blogAPI
RewriteRule ^(rss|atom)$ ./xe/index.php?module=rss&act=$1 [L]
RewriteRule ^([a-zA-Z0-9_]+)/(rss|atom|api)$ ./xe/index.php?mid=$1&act=$2 [L]
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/(rss|atom|api)$ ./xe/index.php?vid=$1&mid=$2&act=$3 [L]
# trackback
RewriteRule ^([0-9]+)/(.+)/trackback$ ./xe/index.php?document_srl=$1&key=$2&act=trackback [L]
RewriteRule ^([a-zA-Z0-9_]+)/([0-9]+)/(.+)/trackback$ ./xe/index.php?vid=$1&document_srl=$2&key=$3&act=trackback [L]
# administrator page
RewriteRule ^admin/?$ ./xe/index.php?module=admin [L]
# document permanent link
RewriteRule ^([0-9]+)$ ./xe/index.php?document_srl=$1 [L]
# mid link
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9_]+)/?$ ./xe/index.php?mid=$1 [L]
# mid + document link
RewriteRule ^([a-zA-Z0-9_]+)/([0-9]+)$ ./xe/index.php?mid=$1&document_srl=$2 [L]
# vid + mid link
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/?$ ./xe/index.php?vid=$1&mid=$2 [L]
# vid + mid + document link
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([0-9]+)$ ./xe/index.php?vid=$1&mid=$2&document_srl=$3 [L]
# mid + entry title
RewriteRule ^([a-zA-Z0-9_]+)/entry/(.+)$ ./xe/index.php?mid=$1&entry=$2 [L]
# vid + mid + entry title
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/entry/(.+)$ ./xe/index.php?vid=$1&mid=$2&entry=$3 [L]
저도 1.4.4.2 설치후 주소를 xe로 넘겨줄때 .htaccess(주의사항: xe내의 파일이 아니고 루트에 임의로 올린 파일) 파일을 이용하면 에러가 발생하더군요.
그래서 아래 파일로 대체하였습니다.
한번 이용해보세요.