얼마 전 와우웹 호스팅에서 계정을 구입했다. 초등교사를 위한 메타 블로그(http://lounge.luvda.com)를 운영하기 위함이었는데 나중에 학급 홈페이지 및 커뮤니티 사이트를 개설할 것도 염두에 두었기 때문에 xe도 설치하기로 결정했다. 제로보드4 이후로 제로보드는 사용해 본 적이 없어서 다소 낯설기는 했지만 설치에 큰 어려움은 없었다.

  그런데 설치 후 404 에러가 계속 발생했다. 영문을 몰라 몇 번이고 재설치를 해 보았지만 문제는 계속해서 발생했다. rewrite.php 파일을 찾을 수 없다는 메세지가 계속해서 출력되었다. 며칠동안 끌었던 이문제를 드디어 오늘 해결하게 되었다.

  문제는 설치에서 비롯되었다. xe 홈페이지에서 tar.gz 파일을 받은 후 계정에 설치하고 압축을 풀면 저절로 xe라는 폴더를 생성하고 그 안에 프로그램이 설치된다. 그런데 나는 '도메인/xe'보다는 '도메인'으로 바로 사용하고 싶었기 때문에 xe폴더 안에 풀어진 파일들을 모두 상위 폴더로 옮겨 놓았다. 하지만 숨겨진 파일인 .htaccess는 복사되지 않았는데 바로 이 때문에 계속해서 404에러가 발생했던 것이다.

  따라서 같은 문제로 고생하고 있는 사용자가 있다면 xe 폴더 안에 있는 .htaccess 파일을 상위 폴더로 복사해 줌으로써 간단히 해결할 수 있다.


.htaccess 내용
RewriteEngine On

# image...
RewriteRule ^(.+)/files/attach/images/(.*) ./files/attach/images/$2 [L]
RewriteRule ^(.+)/files/attach/menu_button/(.*) ./files/attach/menu_button/$2 [L]
RewriteRule ^(.+)/files/member_extra_info/(.*) ./files/member_extra_info/$2 [L]
RewriteRule ^(.+)/files/cache/(.*) ./files/cache/$2 [L]
RewriteRule ^(.+)/modules/(.*) ./modules/$2 [L]
RewriteRule ^(.+)/common/css/(.*) ./common/css/$2 [L]
RewriteRule ^(.+)/common/js/(.*) ./common/js/$2 [L]
RewriteRule ^(.+)/common/tpl/(.*) ./common/tpl/$2 [L]
RewriteRule ^(.+)/widgets/(.*) ./widgets/$2 [L]
RewriteRule ^(.+)/layouts/(.*) ./layouts/$2 [L]
RewriteRule ^(.+)/addons/(.*) ./addons/$2 [L]

# page
RewriteRule ^([a-zA-Z0-9_]+)/([[:digit:]]+)page$ ./index.php?mid=$1&page=$2 [L]

# total rss
RewriteRule ^rss/([[:digit:]]+){0,14}/([[:digit:]]+){0,14}/([[:digit:]]+)$ ./index.php?module=rss&act=rss&start_date=$1&end_date=$2&page=$3 [L]
RewriteRule ^rss/([[:digit:]]+)$ ./index.php?module=rss&act=rss&page=$1 [L]
RewriteRule ^rss$ ./index.php?module=rss&act=rss [L]
RewriteRule ^atom/([[:digit:]]+){0,14}/([[:digit:]]+){0,14}/([[:digit:]]+)$ ./index.php?module=rss&act=atom&start_date=$1&end_date=$2&page=$3 [L]
RewriteRule ^atom/([[:digit:]]+)$ ./index.php?module=rss&act=atom&page=$1 [L]
RewriteRule ^atom$ ./index.php?module=rss&act=atom [L]

# administrator page
RewriteRule ^admin/?$ ./index.php?module=admin [L]

# mid + act
RewriteRule ^([a-zA-Z0-9_]+)/api$ ./index.php?mid=$1&act=api [L]

# document permanent link
RewriteRule ^([[:digit:]]+)$ ./index.php?document_srl=$1 [L]

# document + act link
RewriteRule ^([[:digit:]]+)/([a-zA-Z0-9_]+)$ ./index.php?document_srl=$1&act=$2 [L]

# document + key + act link
RewriteRule ^([[:digit:]]+)/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)$ ./index.php?document_srl=$1&act=$3&key=$2 [L]

# mid + document link
RewriteRule ^([a-zA-Z0-9_]+)/([[:digit:]]+)$ ./index.php?mid=$1&document_srl=$2 [L]

# mid + act link
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)$ ./index.php?mid=$1&act=$2 [L]

# mid + page link
RewriteRule ^([a-zA-Z0-9_]+)/page/([[:digit:]]+)$ ./index.php?mid=$1&page=$2 [L]

# mid + entry title
RewriteRule ^([a-zA-Z0-9_]+)/entry/(.+)$ ./index.php?mid=$1&entry=$2 [L]

# mid + category link
RewriteRule ^([a-zA-Z0-9_]+)/category/([[:digit:]]+)$ ./index.php?mid=$1&category=$2 [L]

# mid + act + document_Srl
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z])([a-zA-Z0-9_]+)/([[:digit:]]+)$ ./index.php?mid=$1&document_srl=$4&act=$2$3 [L]

# mid + document_Srl + page
RewriteRule ^([a-zA-Z0-9_]+)/([[:digit:]]+)/page/([[:digit:]]+)$ ./index.php?mid=$1&document_srl=$2&page=$3 [L]

# mid + category + page
RewriteRule ^([a-zA-Z0-9_]+)/category/([[:digit:]]+)/page/([[:digit:]]+)$ ./index.php?mid=$1&category=$2&page=$3 [L]

# mid + search target regdate (year+month)
RewriteRule ^([a-zA-Z0-9_]+)/([[:digit:]]+)/([[:digit:]]+)$ ./index.php?mid=$1&search_target=regdate&search_keyword=$2$3 [L]

# mid + search target regdate (year+month+day)
RewriteRule ^([a-zA-Z0-9_]+)/([[:digit:]]+)/([[:digit:]]+)/([[:digit:]]+)$ ./index.php?mid=$1&search_target=regdate&search_keyword=$2$3$4 [L]

# mid + search target tag
RewriteRule ^([a-zA-Z0-9_]+)/tag/(.*)$ ./index.php?mid=$1&search_target=tag&search_keyword=$2 [L]

# mid + search target writer
RewriteRule ^([a-zA-Z0-9_]+)/writer/(.*)$ ./index.php?mid=$1&search_target=nick_name&search_keyword=$2 [L]

# mid + document_Srl + page + act
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([[:digit:]]+)/page/([[:digit:]]+)$ ./index.php?mid=$1&document_srl=$3&page=$4&act=$2 [L]

# module link
RewriteRule ^([a-zA-Z0-9_]+)(/){0,1}$ ./index.php?mid=$1 [L]


저작자 표시 비영리 변경 금지

댓글을 달아 주세요

  1. uggboots00 2010/12/23 17:12

    <strong><a href="http://www.monclerbestjackets.com/">moncler</a><strong>three colors for you <strong><a href="http://www.monclerbestjackets.com/">moncler jackets</a><strong> undesirable There are three<strong><a href="http://www.monclerbestjackets.com/">moncler clothing</a><strong>warmthThere are three colors <strong><a href="http://www.monclerbestjackets.com/">moncler coats</a><strong>of one There are three colors for<strong><a href="http://www.monclerbestjackets.com/">moncler vest</a><strong>blanketThere are three colors<strong><a href="http://www.monclerbestjackets.com/">discount moncler</a><strong>and even a There are three<strong><a href="http://www.monclerbestjackets.com/">moncler outlet</a><strong>cottonThere are three colors for<strong><a href="http://www.monclerbestjackets.com/">moncler sale</a><strong>lights There are three colors<strong><a href="http://www.monclerbestjackets.com/">moncler daunenjacke</a><strong>weightThere are three colors <strong><a href="http://www.monclerbestjackets.com/">moncler jacken online shop</a><strong>

  2. uggboots00 2010/12/23 17:12

    With [url=http://www.jacketsonlinemoncler.com/]moncler[/url]rich experience of delivering [url=http://www.jacketsonlinemoncler.com/]moncler jackets[/url]watches to our customers worldwide, [url=http://www.jacketsonlinemoncler.com/]buy moncler coats[/url]especially in Europe, America and [url=http://www.jacketsonlinemoncler.com/]moncler vest[/url]Oceania, Top-watches-brand has the[url=http://www.jacketsonlinemoncler.com/]moncler jacket[/url] ability to send the ordered watches[url=http://www.jacketsonlinemoncler.com/]moncler coats[/url] safely to its customers with easy ways[url=http://www.jacketsonlinemoncler.com/]buy moncler jackets[/url] to clear the customs. As for the watches,[url=http://www.jacketsonlinemoncler.com/]moncler jackets sale[/url] Top-watches-brand can provide most of the renowned watch [url=http://www.jacketsonlinemoncler.com/]moncler jackets for sale[/url]manufactures all over the [url=http://www.jacketsonlinemoncler.com/]moncler boots[/url]

  3. uggboots00 2010/12/23 17:12

    With [url=http://www.jacketsonlinemoncler.com/]moncler[/url]rich experience of delivering [url=http://www.jacketsonlinemoncler.com/]moncler jackets[/url]watches to our customers worldwide, [url=http://www.jacketsonlinemoncler.com/]buy moncler coats[/url]especially in Europe, America and [url=http://www.jacketsonlinemoncler.com/]moncler vest[/url]Oceania, Top-watches-brand has the[url=http://www.jacketsonlinemoncler.com/]moncler jacket[/url] ability to send the ordered watches[url=http://www.jacketsonlinemoncler.com/]moncler coats[/url] safely to its customers with easy ways[url=http://www.jacketsonlinemoncler.com/]buy moncler jackets[/url] to clear the customs. As for the watches,[url=http://www.jacketsonlinemoncler.com/]moncler jackets sale[/url] Top-watches-brand can provide most of the renowned watch [url=http://www.jacketsonlinemoncler.com/]moncler jackets for sale[/url]manufactures all over the [url=http://www.jacketsonlinemoncler.com/]moncler boots[/url]

  4. uggboots00 2010/12/27 18:20

    <strong><a href="http://www.monclerbestjackets.com/">moncler</a><strong>three colors for you <strong><a href="http://www.monclerbestjackets.com/">moncler jackets</a><strong> undesirable There are three<strong><a href="http://www.monclerbestjackets.com/">moncler clothing</a><strong>warmthThere are three colors <strong><a href="http://www.monclerbestjackets.com/">moncler coats</a><strong>of one There are three colors for<strong><a href="http://www.monclerbestjackets.com/">moncler vest</a><strong>blanketThere are three colors<strong><a href="http://www.monclerbestjackets.com/">discount moncler</a><strong>and even a There are three<strong><a href="http://www.monclerbestjackets.com/">moncler outlet</a><strong>cottonThere are three colors for<strong><a href="http://www.monclerbestjackets.com/">moncler sale</a><strong>lights There are three colors<strong><a href="http://www.monclerbestjackets.com/">moncler daunenjacke</a><strong>weightThere are three colors <strong><a href="http://www.monclerbestjackets.com/">moncler jacken online shop</a><strong>

  5. Favicon of http://www.monclerjackets.com.hk/ moncler jackets 2011/07/18 11:50

    [url=http://www.monclerjackets.com.hk/]moncler jackets[/url]
    [url=http://www.monclerjackets.com.hk/]moncler down jacket[/url]
    [url=http://www.monclerjackets.com.hk/moncler-jackets/moncler-kids-jackets-1.html]moncler[/url]
    [url=http://www.monclerjackets.com.hk/moncler-jackets/moncler-kids-jackets-1.html]cheap moncler jackets[/url]

비밀글 (Serect)
댓글 달기 (Submit)