반응형
도메인 주소
도메인을 구매해서 연결했는데 네이버에서 티스토리 주소로 노출된다. 속상하다. 하지만 리다이렉션으로 강제로 도메인 주소연결을 시도했지만, 티스토리에서는 이용정지 시킨다. 당장 강제 도메인주소 연결 해지 안하면 이용정지 안풀어준다고 한다.
그래서 자연스럽게 글속에서 연결되는걸 추천한다. 그리고 글에 도메인주소를 스며들게 포스팅을 해줘라! <아래배너처럼 설정하는 방법을 공유해볼게요>
추가적으로 제가 겪은 가장 좋은 방법은 네이버에서 해당 도메인 링크글로 유입이 많으면 티스토리 주소보다 도메인 주소로 거의 노출이 됩니다.
✅ 1. 블로그 카테고리 아래 배너
💡 카테고리 메뉴 아래에 배너를 추가하여 방문자들에게 새로운 도메인을 안내할 수 있어요.
📌 이 코드를 <header> 태그 아래 또는 <nav> 태그 아래에 추가하면 돼요.
<div style="padding: 12px; background: #007BFF; color: white; text-align: center; font-weight: bold; margin-top: 10px; border-radius: 8px;"> 📢 <strong>이 블로그의 새로운 주소!</strong> 👉 <a href="https://1.our2023.com" target="_blank" style="color: #FFD700; text-decoration: underline;">여기로 이동 🚀</a> </div>
✅ 2. 블로그 최상단 배너 (스크롤 고정)
💡 최상단에서 항상 보이는 배너로 방문자들이 2차 도메인을 인지하도록 만들어요!
📌 이 코드를 <body> 태그 바로 아래에 넣으면 블로그 최상단에 고정됩니다.
<div id="sticky-banner" style="position: fixed; top: 0; left: 0; width: 100%; background: linear-gradient(135deg, #007BFF, #00C6FF); color: white; text-align: center; padding: 12px; font-size: 16px; font-weight: bold; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); z-index: 9999;"> 📢 <strong>이 블로그의 새로운 주소!</strong> 👉 <a id="dynamic-link-top" href="#" style="color: #FFD700; text-decoration: none; font-weight: bold; padding: 8px 15px; background: rgba(255, 255, 255, 0.2); border-radius: 5px; display: inline-block;">여기로 이동 🚀</a> </div> <div style="height: 50px;"></div> <!-- 본문이 배너에 가려지지 않도록 여백 추가 --> <!-- ✅ JavaScript (현재 글 유지하며 도메인 변경) --> <script> document.addEventListener("DOMContentLoaded", function() { var currentUrl = window.location.href; var newUrl = currentUrl.replace("https://our2024.tistory.com", "https://1.our2023.com"); document.getElementById("dynamic-link-top").setAttribute("href", newUrl); }); </script>
✔️이제 스크롤해도 최상단에서 배너가 유지되면서, 클릭하면 현재 글 주소를 유지하며 2차 도메인으로 이동됩니다! 🚀
✅ 📌 3. 글 본문 중간에 자연스럽게 넣는 배너
💡 글을 읽다가 자연스럽게 배너를 볼 수 있도록 중간에 삽입!
📌 HTML 모드에서 아래 코드를 원하는 위치에 삽입하면 돼요.
<div style="padding: 15px; border: 2px solid #007BFF; background: linear-gradient(135deg, #007BFF, #00C6FF); color: white; text-align: center; border-radius: 10px; font-weight: bold; margin: 20px 0; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);"> 📢 <strong>이 블로그의 새로운 주소!</strong><br><br> 👉 <a id="dynamic-link-content" href="#" style="color: #FFD700; text-decoration: none; font-size: 18px; font-weight: bold; background: rgba(255, 255, 255, 0.2); padding: 10px 20px; border-radius: 5px; display: inline-block; transition: 0.3s;">여기로 방문하세요! 🚀</a> </div> <!-- ✅ JavaScript (현재 글 유지하며 도메인 변경) --> <script> document.addEventListener("DOMContentLoaded", function() { var currentUrl = window.location.href; var newUrl = currentUrl.replace("https://our2024.tistory.com", "https://1.our2023.com"); document.getElementById("dynamic-link-content").setAttribute("href", newUrl); }); </script>
✔️ 이제 글 중간에서도 자연스럽게 배너를 보면서 2차 도메인으로 이동할 수 있어요! 🚀
✅ 4. 글 하단 자동 배너 추가 (모든 글 아래 자동 삽입)
💡 모든 글 하단에 자동으로 배너를 추가하고 싶다면, 티스토리 HTML에서 설정 가능!
📌 티스토리 관리자에서 "스킨 편집" → "HTML 편집"으로 이동 후, 글 하단(footer)에 아래 코드 추가!
<div style="padding: 15px; border: 2px solid #007BFF; background: linear-gradient(135deg, #007BFF, #00C6FF); color: white; text-align: center; border-radius: 10px; font-weight: bold; margin-top: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);"> 📢 <strong>이 블로그의 새로운 주소!</strong><br><br> 👉 <a id="dynamic-link-footer" href="#" style="color: #FFD700; text-decoration: none; font-size: 18px; font-weight: bold; background: rgba(255, 255, 255, 0.2); padding: 10px 20px; border-radius: 5px; display: inline-block; transition: 0.3s;">여기로 방문하세요! 🚀</a> </div> <!-- ✅ JavaScript (현재 글 유지하며 도메인 변경) --> <script> document.addEventListener("DOMContentLoaded", function() { var currentUrl = window.location.href; var newUrl = currentUrl.replace("https://our2024.tistory.com", "https://1.our2023.com"); document.getElementById("dynamic-link-footer").setAttribute("href", newUrl); }); </script>
✅ 이제 모든 글 하단에 자동으로 배너가 삽입되고, 현재 글을 유지하면서 2차 도메인으로 이동됩니다! 🚀
다음글에서 더 많은 애드센스 방법 공유해볼게요 🎉🎉
반응형
'애드센스 공부하기' 카테고리의 다른 글
티스토리에서 도메인 주소로 바로 연결을 위한 노력 (0) | 2025.02.27 |
---|---|
<고품질 트래픽>이란? 이게 곧 애드센스 수익상승! (0) | 2025.01.14 |
애드센스 RPM 급 상승한 이유! (0) | 2025.01.14 |
애드센스 RPM 수치 상위권 얼마길래... (0) | 2025.01.13 |
애드센스 수익손실위험 쉬운 해결방법 (0) | 2024.02.13 |
도메인 연결시에도 티스토리 주소로 노출, 해결방법 (3) | 2024.01.19 |
블로그로 구글 애드센스 수익 얻는 10가지 가이드라인 방법! (2) | 2024.01.09 |
댓글