그누보드 짧은 주소 적용 안되는 경우 해결방법

By: master

그누보드를 설치한 후, 짧은 주소(SEO-friendly URL)를 적용하는 과정에서 문제가 발생하는 경우가 종종 있습니다. 짧은 주소는 URL을 간결하고 직관적으로 만들어 검색 엔진 최적화(SEO)에 도움이 되지만, 서버 설정이나 .htaccess 파일의 문제로 인해 적용되지 않는 상황이 발생할 수 있습니다. 이 글에서는 그누보드에서 짧은 주소가 제대로 작동하지 않을 때의 원인과 해결 방법을 설명합니다. 서버 환경, Apache 설정, .htaccess 파일 수정 등 다양한 원인을 분석하고, 이를 해결하기 위한 단계별 가이드를 제공합니다.

sudo a2enmod rewrite    #rewrite 모듈 활성화

sudo vi /etc/apache2/apache2.conf

<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>

Direcroty 부분은 .htaccess 파일 있는 경로

AllowOverride 부분을 All 또는 FileInfo 로 변경

sudo vi /etc/apache2/sites-enabled/000-default.conf 이 파일 수정해도 됨

 sudo vi /var/www/html/.htaccess 파일 생성 후 내용 작성

#### 그누보드5 rewrite BEGIN #####
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^shop/list-([0-9a-z]+)$  shop/list.php?ca_id=$1&rewrite=1  [QSA,L]
RewriteRule ^shop/type-([0-9a-z]+)$  shop/listtype.php?type=$1&rewrite=1  [QSA,L]
RewriteRule ^shop/([0-9a-zA-Z_\-]+)$  shop/item.php?it_id=$1&rewrite=1  [QSA,L]
RewriteRule ^shop/([^/]+)/$  shop/item.php?it_seo_title=$1&rewrite=1  [QSA,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 #####

저장 후 아파치 재시작

root$ service apache2 restart

Leave a Comment