그누보드 짧은주소 사용하기 > 그누보드5 팁자료실

그누보드5 팁자료실

그누보드 짧은주소 사용하기 정보

그누보드 짧은주소 사용하기

본문

Apache 서버인 경우 rewrite_module 이 비활성화 되어 있으면 짧은 주소를 사용할수 없습니다.

위 멘트에 대한 활성화 설정방법입니다.

 

 

[root@eyedino www]# httpd -M

 

------------생략---------------------
 negotiation_module (shared)
 remoteip_module (shared)
 reqtimeout_module (shared)
 request_module (shared)
 rewrite_module (shared) //있으면 활성된 것이고 없으면 다음단계 진입
 setenvif_module (shared)
 slotmem_plain_module (shared)
 slotmem_shm_module (shared)
 socache_dbm_module (shared)
 socache_memcache_module (shared)
-------------생략------------------------

 

다음단계

 

[root@eyedino www]# nano /etc/httpd/conf.modules.d/00-base.conf
또는 vi editor

[root@eyedino www]# vi /etc/httpd/conf.modules.d/00-base.conf
마지막줄에 붙여넣기

LoadModule rewrite_module modules/mod_rewrite.so
하시면 기본설정은 끝납니다.

 

.htaccess  파일설정

아시는 것처럼 루트 홈폴더 에

그누보드 환경설정/짧은주소/apache 설정 코드 보기를 복사하여 붙여넣기합니다.

 

#### 그누보드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 #####

 

.htaccess파일을 저장합니다.

(혹시 root  소유권 으로 실행 안될 수도 있으니 소유권도 변경 바랍니다.

[root@eyedino www]# chown eyedino.eyedino .htaccess

 

마지막 단계

 아파치 설정파일 설정

[root@eyedino www]# nano /etc/httpd/conf/httpd.conf 

또는

[root@eyedino www]# vi nano /etc/httpd/conf/httpd.conf


<Directory "/home/*****/www">
    AllowOverride None  -> ALL 바꿈
    # Allow open access:
    Require all granted
</Directory>

<Directory "/home/*****/www">
    AllowOverride ALL
    # Allow open access:
    Require all granted
</Directory>

CETOS8 에서는 기본값으로

-------------생략-----------------
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ".ht*">
    Require all denied
</Files>

-----------생략-------------------

이부분 막아놨더군요!


#<Files ".ht*">
#    Require all denied
#</Files>

 

주석정리 해주시고

 httpd  재시작하시면 끝~

[root@eyedino www]# systemctl restart httpd
 

도움이 되었으면 좋겠습니다.

추천
10

댓글 6개

전체 2,412 |RSS
그누보드5 팁자료실 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT