t

짧은 검색 구현

예를 들어 그누보드가 적용된 dsclub.kr/search/?검색어 로 접속 시

https://dsclub.kr/bbs/search.php?sfl=wr_subject%7C%7Cwr_content%7C%7Cmb_id%7C%7Cwr_name%7C%7Cwr_datetime%7C%7Cwr_link%7C%7Cwr_ip&sop=and&stx=검색어로 리다이렉트되게 하고싶다면,

 

웹 서버 디렉토리(루트 폴더 안)에 search폴더를 만들고, /search로 이동.

index.php파일 생성, 아래의 코드를 삽입(dsclub.kr을 원하는 도메인으로 변경)

 

<?php

  $uri = $_SERVER['REQUEST_URI'];]

  $parts = explode('/', $uri);

  $search_index = array_search('search', $parts);

  if ($search_index !== false && count($parts) > $search_index + 1) {

    $search_value = $parts[$search_index + 1];

    $redirect_url = "https://dsclub.kr/bbs/search.php?sfl=wr_subject%7C%7Cwr_content%7C%7Cmb_id%7C%7Cwr_name%7C%7Cwr_datetime%7C%7Cwr_link%7C%7Cwr_ip&sop=and&stx=" . $search_value;

    header("Location: " . $redirect_url);

  }

?>

 

그 후 (예를 들어) dsclub.kr/search/?test 으로 접속하면 test 검색 가능

|

댓글 4개

감사합니다. ^^

와우 심플 단순 감사합니다

정말 유용한 기능이네요! 공유 감사드립니다.. 추천 꾹!!

댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

+
제목 글쓴이 날짜 조회
2년 전 조회 3,456
2년 전 조회 1,693
2년 전 조회 1,866
2년 전 조회 1,229
2년 전 조회 1,763
2년 전 조회 1,664
2년 전 조회 2,267
2년 전 조회 1,680
2년 전 조회 1,135
2년 전 조회 1,989
2년 전 조회 1,467
2년 전 조회 1,339
2년 전 조회 2,288
2년 전 조회 1,739
2년 전 조회 2,241
2년 전 조회 1,364
2년 전 조회 2,203
2년 전 조회 1,038
2년 전 조회 1,791
2년 전 조회 1,558
2년 전 조회 2,852
2년 전 조회 1,780
2년 전 조회 2,073
2년 전 조회 2,556
2년 전 조회 2,581
2년 전 조회 1,627
2년 전 조회 1,744
2년 전 조회 1,575
2년 전 조회 1,469
2년 전 조회 2,580