숨긴파일 강제출력 해서 파일 확인했는데 제 지식으론 서브페이지 관련은 안보이는것 같아요 ㅠㅠ
# .............................. C.m.A 컨텐츠 관리 및 내용 관리 : s .............................................................. #
# C.m.A 페이지 컨텐츠 관리 짧은 주소 : /cp/아이디
###RewriteRule ^cp/(.*) /bbs/cma_page.php?short_cp_id=$1 [L]
# C.m.A 내용 관리 짧은 주소 : /p/아이디
RewriteRule ^p/(.*) /bbs/content.php?co_id=$1 [L]
# .............................. C.m.A 컨텐츠 관리 및 내용 관리 : e .............................................................. #
# .............................. C.m.A BESTEC 카테고리 짧은 주소 : s .............................................................. #
# C.m.A BESTEC 카테고리 짧은 주소 : /bp/분류코드
RewriteRule ^bp/(.*) /bestec/bestec_category.php?ca_id=$1 [L]
# .............................. C.m.A BESTEC 카테고리 짧은 주소 : e .............................................................. #
# .............................. C.m.A 사이트맵 : s .............................................................. #
# 사이트맵을 사용하시려면 .htaccess에 다음을 추가하셔야 합니다.
# http://내도메인/sitemap.xml
RewriteRule ^sitemap([0-9]*)\.xml$ /cma_page/cma_sitemap.php?page=$1 [L]
# .............................. C.m.A 사이트맵 : e .............................................................. #
# .............................. C.m.A RSS 보기 : s .............................................................. #
# 일반적인 그누보드 리스트 짧은 주소 : /아이디
RewriteRule rss.xml/(.*) /cma_page/cma_rss.php?bo_table=$1 [L]
#RewriteRule ^rss([0-9]*)\.xml$ /cma_page/cma_rss.php?bo_table=$1 [L]
#RewriteRule ^([a-zA-Z0-9_]+)$ bbs/rss.php?bo_table=$1 [L,QSA]
# .............................. C.m.A RSS 보기 : s .............................................................. #
#.htaccess 파일 (./.htaccess) 보호
#Option 03
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
</files>
#웹 서버의 에러 페이지 변경
#Option 04
#ErrorDocument 404 /error_page/404.php
#ErrorDocument 403 /error_page/403.php
#ErrorDocument 500 /error_page/500.php
ErrorDocument 404 /
ErrorDocument 403 /
#### 그누보드5 rewrite BEGIN #####
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^content/([0-9a-zA-Z_]+)$ bbs/content.php?co_id=$1&rewrite=1 [QSA,L]
RewriteRule ^content/([^/]+)/$ bbs/content.php?co_seo_title=$1&rewrite=1 [QSA,L]
RewriteRule ^rss/([0-9a-zA-Z_]+)$ bbs/rss.php?bo_table=$1 [QSA,L]
RewriteRule ^([0-9a-zA-Z_]+)$ bbs/board.php?bo_table=$1&rewrite=1 [QSA,L]
RewriteRule ^([0-9a-zA-Z_]+)/([^/]+)/$ bbs/board.php?bo_table=$1&wr_seo_title=$2&rewrite=1 [QSA,L]
RewriteRule ^([0-9a-zA-Z_]+)/write$ bbs/write.php?bo_table=$1&rewrite=1 [QSA,L]
RewriteRule ^([0-9a-zA-Z_]+)/([0-9]+)$ bbs/board.php?bo_table=$1&wr_id=$2&rewrite=1 [QSA,L]
</IfModule>
#### 그누보드5 rewrite END #####