그누보드 5에서 url를 축약하려 하는데 잘 되지 않습니다.
본문
※ 질문 내용은 표준어로 에러 메세지 및 로그를 포함하여 답변자가 이해하기 쉽게 최대한 자신이 처한 상황 및 질문 내용을 깔끔하게 정리하여
접속주소 : http://xxx.com/00288/open
요청주소 : http://xxx.com/00288/index.php?type=open
위처럼 /00288/open 으로 접속했을때 /00288/index.php?type=open 페이지에 type값에 open 이 들어가도록 어찌해야하나요?
http://xxx.com/00288/sms
http://xxx.com/00288/index.php?type=sms
이처럼 이동되게 하려 합니다.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^/00288/([^/]*)/([^/]*) /index.php?type=$1 [PT]
</IfModule>
위처럼 했는데 전혀 되지 않네요... 도움 부탁드립니다. 감사합니다
답변 2
'/00288' -> '00288'
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^00288/([0-9a-zA-Z_]+)$ 00288/index.php?type=$1 [QSA,L]
</IfModule>
답변 감사합니다. 다시 하니깐 잘 적용이 됩니다
<?
include_once("_common.php");
goto_url("$g4[bbs_path]/board.php?bo_table=$bo_table&wr_id=$wr_id");
?>
참고로 index.php 파일 내용입니다. 감사합니다.