묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
.htaccess파일 수정해서 Root URL로 변경시
2011.03.02 04:38
클라이언트가 루트만으로 URL을 만들어달라고해서
현재 호스팅받고 있는 곳이 XE를 루트에 깔 수 없어
아래와 같이 .htaccess 파일을 변경해서 작업중인데요....
RewriteEngine On RewriteRule ^index.php$ /tx21/index.php [L] # reserve XE Layout Template Source File (*.html) RewriteRule ^(layouts|m.layouts)/(.+)/(.+)\.html$ ./tx21/index.php [L] # static files RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^(.+)/files/(member_extra_info|attach|cache|faceOff)/(.*) ./tx21/files/$2/$3 [L] RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^(.+)/(files|modules|common|widgets|widgetStyle|layouts|m.layouts|addons)/(.*) ./tx21/$2/$3 [L] # rss , blogAPI RewriteRule ^(rss|atom)$ ./tx21/index.php?module=rss&act=$1 [L] RewriteRule ^([a-zA-Z0-9_]+)/(rss|atom|api)$ ./tx21/index.php?mid=$1&act=$2 [L] RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/(rss|atom|api)$ ./tx21/index.php?vid=$1&mid=$2&act=$3 [L] # trackback RewriteRule ^([0-9]+)/(.+)/trackback$ ./tx21/index.php?document_srl=$1&key=$2&act=trackback [L] RewriteRule ^([a-zA-Z0-9_]+)/([0-9]+)/(.+)/trackback$ ./tx21/index.php?vid=$1&document_srl=$2&key=$3&act=trackback [L] # administrator page RewriteRule ^admin/?$ ./tx21/index.php?module=admin [L] # document permanent link RewriteRule ^([0-9]+)$ ./tx21/index.php?document_srl=$1 [L] # mid link RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^([a-zA-Z0-9_]+)/?$ ./tx21/index.php?mid=$1 [L] # mid + document link RewriteRule ^([a-zA-Z0-9_]+)/([0-9]+)$ ./tx21/index.php?mid=$1&document_srl=$2 [L] # vid + mid link RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/?$ ./tx21/index.php?vid=$1&mid=$2 [L] # vid + mid + document link RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([0-9]+)$ ./tx21/index.php?vid=$1&mid=$2&document_srl=$3 [L] # mid + entry title RewriteRule ^([a-zA-Z0-9_]+)/entry/(.+)$ ./tx21/index.php?mid=$1&entry=$2 [L] # vid + mid + entry title RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/entry/(.+)$ ./tx21/index.php?vid=$1&mid=$2&entry=$3 [L]
문제는 http://tekxen21.byus.net/Industrial_Automation/ 와 같이
ID 뒤에 꼭 슬래시를 붙여줘야만 깨져보이지 않습니다.
http://tekxen21.byus.net/Industrial_Automation
위와 같이 접속을 해도 깨져보이지 않게 할려면 어떻게 해야 할까요? 흑.....
위와 같은 방식으로 진행하게되면 경우의 수를 따져도 여러 불편과 문제가 생길 것 같네요.
좋은 답변이 되지 못해 죄송합니다.