<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>그누보드 Bootstrap5 Basic 테마 &amp;gt; 커뮤니티 &amp;gt; SEO Tips</title>
<link>https://ask-seo.net/tips</link>
<language>ko</language>
<description>SEO Tips (2025-10-29 16:12:54)</description>

<item>
<title>그누보드 5 게시물, 영카트 상품 SEO 차단하기</title>
<link>https://ask-seo.net/tips/%EA%B7%B8%EB%88%84%EB%B3%B4%EB%93%9C-5-%EA%B2%8C%EC%8B%9C%EB%AC%BC-%EC%98%81%EC%B9%B4%ED%8A%B8-%EC%83%81%ED%92%88-seo-%EC%B0%A8%EB%8B%A8%ED%95%98%EA%B8%B0/</link>
<description><![CDATA[<p>/extend/user.config.php 파일에  아래 내용 추가해 주세요.</p>
<div>
<div>/**</div>
<div> * 게시물, 상품별 검색차단 함수</div>
<div> *</div>
<div> * @return void</div>
<div> */</div>
<div>function check_noindex_meta()</div>
<div>{</div>
<div>    global $g5, $bo_table, $wr_id, $it_id;</div>
<br />
<div>    // 게시판 글 체크</div>
<div>    if (isset($bo_table) &amp;&amp; isset($wr_id)) {</div>
<div>        $bo_table_safe = preg_replace('/[^a-z0-9_]/i', '', $bo_table);</div>
<div>        $wr_id_safe = (int)$wr_id;</div>
<br />
<div>        if ($bo_table_safe &amp;&amp; $wr_id_safe) {</div>
<div>            $sql = "SELECT wr_10 FROM {$g5['write_prefix']}{$bo_table_safe} WHERE wr_id = '{$wr_id_safe}'";</div>
<div>            $row = sql_fetch($sql);</div>
<br />
<div>            if ($row &amp;&amp; !empty($row['wr_10']) &amp;&amp; strpos($row['wr_10'], '검색차단') !== false) {</div>
<div>                echo '&lt;meta name="robots" content="noindex, nofollow"&gt;' . "\n";</div>
<div>                return true;</div>
<div>            }</div>
<div>        }</div>
<div>    }</div>
<br />
<div>    // 영카트 상품 체크</div>
<div>    if (isset($it_id)) {</div>
<div>        $it_id_safe = preg_replace('/[^a-z0-9_-]/i', '', $it_id);</div>
<br />
<div>        if ($it_id_safe) {</div>
<div>            $sql = "SELECT it_10 FROM {$g5['g5_shop_item_table']} WHERE it_id = '{$it_id_safe}'";</div>
<div>            $row = sql_fetch($sql);</div>
<br />
<div>            if ($row &amp;&amp; !empty($row['it_10']) &amp;&amp; strpos($row['it_10'], '검색차단') !== false) {</div>
<div>                echo '&lt;meta name="robots" content="noindex, nofollow"&gt;' . "\n";</div>
<div>                return true;</div>
<div>            }</div>
<div>        }</div>
<div>    }</div>
<br />
<div>    return false;</div>
<div>}</div>
</div>
<div> </div>
<div>사용중인 head.sub.php 파일에 아래 내용 추가합니다. </div>
<div>
<div>상단에     &lt;meta charset="utf-8"&gt; 태그 아래에 추가해 주세요.</div>
<div>&lt;?php  check_noindex_meta(); ?&gt;</div>
<div> </div>
<div> </div>
<div>게시물 수정에서 여분 필드 10번인 wr_10 에 검색차단 입력하면 해당 게시물은 검색 차단용 메타태그를 출력합니다. </div>
<div> </div>
<div>영카트는  상품 수정에 여분필드 10번 it_10 에 검색차단 이라고 입력하면 됩니다.</div>
<div> </div>
<div>게시판 여분필드 사용법은 SIR 많이 있습니다. </div>
<div>여분필드 바꾸고 싶다면 함수의 wr_10, it_10을 원하는 여분필드로 바꾸세요.</div>
<div> </div>
<div> </div>
</div>
<div> </div>]]></description>
<dc:creator>ASKSEO</dc:creator>
<dc:date>2025-10-29T16:12:54+09:00</dc:date>
</item>


<item>
<title>.htaccess 에서 AI 봇 차단하기</title>
<link>https://ask-seo.net/tips/htaccess-%EC%97%90%EC%84%9C-ai-%EB%B4%87-%EC%B0%A8%EB%8B%A8%ED%95%98%EA%B8%B0/</link>
<description><![CDATA[<p># AI 크롤러 User Agent 차단<br />&lt;IfModule mod_rewrite.c&gt;<br />RewriteEngine On</p>
<p># OpenAI 크롤러들 차단<br />RewriteCond %{HTTP_USER_AGENT} ^.*(GPTBot|ChatGPT-User|OAI-SearchBot).* [NC]<br />RewriteRule .* - [F,L]</p>
<p># Anthropic 크롤러들 차단<br />RewriteCond %{HTTP_USER_AGENT} ^.*(ClaudeBot|Claude-Web|anthropic-ai).* [NC]<br />RewriteRule .* - [F,L]</p>
<p># 기타 AI 크롤러들 차단<br />RewriteCond %{HTTP_USER_AGENT} ^.*(CCBot|Amazonbot|FacebookBot|Bytedance|Diffbot).* [NC]<br />RewriteRule .* - [F,L]</p>
<p># 의심스러운 크롤러들 추가 차단<br />RewriteCond %{HTTP_USER_AGENT} ^.*(scrapy|python-requests|wget|curl).* [NC]<br />RewriteRule .* - [F,L]<br />&lt;/IfModule&gt;</p>]]></description>
<dc:creator>ASKSEO</dc:creator>
<dc:date>2025-09-10T10:35:41+09:00</dc:date>
</item>


<item>
<title>robots.txt 에서 주요 AI Crawler 차단하기</title>
<link>https://ask-seo.net/tips/robotstxt-%EC%97%90%EC%84%9C-%EC%A3%BC%EC%9A%94-ai-crawler-%EC%B0%A8%EB%8B%A8%ED%95%98%EA%B8%B0/</link>
<description><![CDATA[<p># 모든 AI 크롤러 차단<br />User-agent: GPTBot<br />Disallow: /</p>
<p>User-agent: ChatGPT-User<br />Disallow: /</p>
<p>User-agent: OAI-SearchBot<br />Disallow: /</p>
<p>User-agent: ClaudeBot<br />Disallow: /</p>
<p>User-agent: Claude-Web<br />Disallow: /</p>
<p>User-agent: CCBot<br />Disallow: /</p>
<p>User-agent: Amazonbot<br />Disallow: /</p>
<p>User-agent: FacebookBot<br />Disallow: /</p>
<p>User-agent: Bytedance<br />Disallow: /</p>
<p>User-agent: Diffbot<br />Disallow: /</p>
<p># 구글, 빙 등 검색엔진은 허용<br />User-agent: Googlebot<br />Allow: /</p>
<p>User-agent: Bingbot<br />Allow: /</p>]]></description>
<dc:creator>ASKSEO</dc:creator>
<dc:date>2025-09-10T10:35:12+09:00</dc:date>
</item>


<item>
<title>SEO 태그 중요도 분류</title>
<link>https://ask-seo.net/tips/seo-%ED%83%9C%EA%B7%B8-%EC%A4%91%EC%9A%94%EB%8F%84-%EB%B6%84%EB%A5%98/</link>
<description><![CDATA[<h1 class="font-600 text-lg font-bold">SEO 태그 중요도 분류</h1>
<h2 class="font-bold">매우 중요 (High Priority)</h2>
<ol class="-mt-1 list-decimal space-y-2 pl-8">
<li class="whitespace-normal break-words"><strong>Title 태그</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;title&gt;페이지 제목&lt;/title&gt;</code></li>
<li class="whitespace-normal break-words">검색 결과에 직접 표시되는 핵심 요소</li>
<li class="whitespace-normal break-words">각 페이지마다 고유하고 설명적인 제목 사용</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Meta Description 태그</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;meta name="description" content="페이지 설명"&gt;</code></li>
<li class="whitespace-normal break-words">검색 결과에서 제목 아래에 표시되는 요약 정보</li>
<li class="whitespace-normal break-words">페이지 내용을 간결하게 설명하는 150-160자 권장</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Heading 태그 (H1-H6)</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;h1&gt;주요 제목&lt;/h1&gt;</code>, <code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;h2&gt;부제목&lt;/h2&gt;</code> 등</li>
<li class="whitespace-normal break-words">페이지 구조와 주요 키워드를 나타내는 데 중요</li>
<li class="whitespace-normal break-words">H1은 페이지당 한 번만 사용하고, 계층 구조 유지</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Canonical 태그</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;link rel="canonical" href="https://example.com/page"&gt;</code></li>
<li class="whitespace-normal break-words">중복 콘텐츠 문제 해결 및 선호 URL 지정</li>
</ul>
</li>
</ol>
<h2 class="font-bold">중요 (Medium Priority)</h2>
<ol class="-mt-1 list-decimal space-y-2 pl-8" start="5">
<li class="whitespace-normal break-words"><strong>Image Alt 속성</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;img src="image.jpg" alt="이미지 설명"&gt;</code></li>
<li class="whitespace-normal break-words">이미지 검색 최적화 및 접근성 향상</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Meta Robots 태그</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;meta name="robots" content="index, follow"&gt;</code></li>
<li class="whitespace-normal break-words">검색 엔진 크롤링 및 인덱싱 제어</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Schema Markup</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words">구조화된 데이터를 제공하여 리치 스니펫 생성</li>
<li class="whitespace-normal break-words">JSON-LD 형식 권장</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Open Graph 태그</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;meta property="og:title" content="제목"&gt;</code></li>
<li class="whitespace-normal break-words">소셜 미디어 공유 시 표시되는 정보 제어</li>
</ul>
</li>
</ol>
<h2 class="font-bold">유용함 (Low Priority)</h2>
<ol class="-mt-1 list-decimal space-y-2 pl-8" start="9">
<li class="whitespace-normal break-words"><strong>Meta Keywords 태그</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;meta name="keywords" content="키워드1, 키워드2"&gt;</code></li>
<li class="whitespace-normal break-words">대부분의 주요 검색 엔진에서 중요도가 낮아짐</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Viewport 태그</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;</code></li>
<li class="whitespace-normal break-words">모바일 최적화에 중요</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Hreflang 태그</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;link rel="alternate" hreflang="es" href="https://es.example.com/"&gt;</code></li>
<li class="whitespace-normal break-words">다국어 사이트의 언어/지역 버전 지정</li>
</ul>
</li>
<li class="whitespace-normal break-words"><strong>Favicon</strong>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words"><code class="bg-bg-300 text-accent-secondary-000 whitespace-pre-wrap rounded-[0.3rem] px-1 py-px text-[0.95em]">&lt;link rel="icon" href="favicon.ico"&gt;</code></li>
<li class="whitespace-normal break-words">브랜드 인지도 향상 및 사용자 경험 개선</li>
</ul>
</li>
</ol>
<h2 class="font-bold">주의사항</h2>
<ul class="-mt-1 list-disc space-y-2 pl-8">
<li class="whitespace-normal break-words">태그의 중요도는 검색 엔진 알고리즘 변화에 따라 달라질 수 있습니다.</li>
<li class="whitespace-normal break-words">과도한 키워드 삽입이나 불필요한 태그 사용은 오히려 역효과를 낼 수 있습니다.</li>
<li class="whitespace-normal break-words">사용자 경험과 콘텐츠 품질이 항상 우선되어야 합니다.</li>
</ul>]]></description>
<dc:creator>ASKSEO</dc:creator>
<dc:date>2024-07-23T14:24:11+09:00</dc:date>
</item>


<item>
<title>SEO를 구현하기 위한 기본 기술</title>
<link>https://ask-seo.net/tips/seo%EB%A5%BC-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0-%EC%9C%84%ED%95%9C-%EA%B8%B0%EB%B3%B8-%EA%B8%B0%EC%88%A0/</link>
<description><![CDATA[<p> </p>
<ul>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 유효한 HTML : 웹사이트는 W3C Validator를 통과하여 사람들과 검색 엔진 모두가 웹사이트를 이해할 수 있어야 합니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 메타 태그 : 제목, 메타 설명 및 기타 태그는 올바른 길이여야 하며, 각 페이지마다 고유해야 합니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> HTTPS : 웹사이트는 HTTPS로 암호화되어야 합니다. 인증서는 Let's Encrypt를 통해 무료로 발급받을 수 있습니다. </span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> XML 사이트맵 : Google에 제출할 XML 사이트맵 생성하여 제출하여야 합니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 구조화된 데이터 : JSON-LD 구조화된 데이터를 구현하여 검색엔진에 제출해야 합니다. </span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 모바일 친화성 : 웹사이트는 모바일 친화성 테스트를 통과해야 합니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 트위터 카드: 트위터 카드를 구현하여 링크를 트위터에서 공유할 때 첨부할 수 있습니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 페이스북 오픈 그래프:  소셜 공유를 위해 페이스북 오픈 그래프를 구현해야 합니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 키워드 일관성: 제목 태그, 이미지의 ALT 속성, 페이지 태그, URL 및 콘텐츠의 &lt;title&gt;에서 키워드 일관성을 유지해야 합니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> robots.txt: robots.txt는 로봇(주로 검색 엔진 로봇)이 웹사이트의 페이지를 크롤링하고 인덱싱하는 방법을 지시하는 텍스트 파일입니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> URL 최적화: 웹사이트의 URL은 명확하고 간결하며 사람이 읽을 수 있어야 하며, 가능한 경우 리디렉션을 사용하지 않아야 합니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> rel=publisher: 이 태그를 구현하세요. 이는 SERP에서 브랜드가 어떻게 표시되는지에 영향을 줄 수 있습니다. &lt;link rel="publisher"&gt;</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 헤딩 태그 계층 구조: 헤딩 태그를 사용하여 페이지의 콘텐츠를 효과적으로 구조화해야 합니다.</span></li>
<li style="font-size:14pt;"><span style="font-size:14pt;"> 중복 콘텐츠 피하기: 동일한 페이지를 여러 URL에서 제공하는 경우 &lt;link rel="canonical"&gt;을 사용하여 콘텐츠의 희석을 방지해야 합니다. </span></li>
</ul>]]></description>
<dc:creator>ASKSEO</dc:creator>
<dc:date>2023-05-31T13:48:07+09:00</dc:date>
</item>


<item>
<title>검색엔진 최적화를 위해 중요하게 고려해야 할 사항</title>
<link>https://ask-seo.net/tips/%EA%B2%80%EC%83%89%EC%97%94%EC%A7%84-%EC%B5%9C%EC%A0%81%ED%99%94%EB%A5%BC-%EC%9C%84%ED%95%B4-%EC%A4%91%EC%9A%94%ED%95%98%EA%B2%8C-%EA%B3%A0%EB%A0%A4%ED%95%B4%EC%95%BC-%ED%95%A0-%EC%82%AC%ED%95%AD/</link>
<description><![CDATA[<p>- 품질 높은 콘텐츠 제작<br />- 효과적인 기술적 SEO 구현<br />- 웹사이트 성능 확인<br />- 웹사이트의 모니터링, 테스트 및 수정<br />- 웹사이트 홍보</p>]]></description>
<dc:creator>ASKSEO</dc:creator>
<dc:date>2023-05-31T13:37:41+09:00</dc:date>
</item>

</channel>
</rss>
