고수님들께 질문 드립니다.
본문
답변달기의 링크를 변경하고 싶은데요
기본링크 관련 질문입니다.
예를들어 답변달기 버튼 클릭시
write.php?w=r&bo_table=chat_gpt&wr_id=7
위와 같은 방식으로 링크가 연동되는것을
rewrite.php?w=r&bo_table=chat_gpt&wr_id=7
위와 같은 방식으로 변경하고 싶은데
소스의 어디부분을 수정하면 될까요?
답변 2
/bbs/view.php 파일에서
// 답변 링크
$reply_href = '';
if ($member['mb_level'] >= $board['bo_reply_level']) {
$reply_href = short_url_clean(G5_BBS_URL.'/write.php?w=r&bo_table='.$bo_table.'&wr_id='.$wr_id.$qstr);
}
이부분에서 변경하시면 됩니다. 스킨 상단에
$reply_href = short_url_clean(G5_BBS_URL.'/rewrite.php?w=r&bo_table='.$bo_table.'&wr_id='.$wr_id.$qstr);
이렇게 처리해주시면 됩니다.
<script>$(function(){$('a[href='write.php?w=r'].attr('href','rewrite.php?w=r');});</script>
답변을 작성하시기 전에 로그인 해주세요.