Possible Reasons for Redirect Error in Blogger

Possible Reasons for Redirect Error in Blogger

 Possible Reasons for Redirect Error in Blogger

உங்கள் Blogger (Blogspot) தளத்தில் Post Delete ஆகவில்லை என்றாலும் Redirect Error வருகிறது என்றால், இது Blogger Settings, Custom Redirects, அல்லது Template Issues காரணமாக இருக்கலாம்.


நீங்கள் கேட்டபடி, இது எப்படி நடக்கிறது, காரணம் என்ன, அதை எவ்வாறு சரி செய்யலாம் என்பதை படங்களுடன் (Picture Format) விளக்க முயற்சிக்கிறேன்.


1️⃣ Possible Reasons for "Redirect Error" in Blogger


🔹 Custom Redirect Misconfiguration:


Blogger Settings > Custom Redirects பகுதியில் Wrong Redirect Path சேர்த்திருந்தால், அது மாறும்.


🔹 Deleted or Incorrect Post URL:


Post Delete செய்யவில்லை என்றாலும் URL Structure மாறியிருக்கும்.


Ex: /old-post → /new-post ஆனால் Redirect /old-post இன்னும் pointing இருக்கும்.


🔹 JavaScript Conflicts in Theme:


உங்கள் Theme Code-ல் Extra Redirect Scripts இருந்தால், அது Wrong Redirect செய்யலாம்.


🔹 Google Indexing Issue (Cached URL):


Google Old URL-ஐ Cache செய்துவிட்டால், அது 404 Redirect Loop காட்டலாம்.


🔹 Blogger’s Own URL Handling Bug:


சில Blogger Templates-ல் Wrong Auto-Redirect Issues இருக்கும்.


2️⃣ How to Fix Blogger Redirect Error? (Step-by-Step)


📌 Step 1: Blogger Custom Redirect Settings Check

✅ Blogger Dashboard > Settings > Errors and Redirects

✅ Custom Redirects பகுதியில் Wrong or Extra Redirects உள்ளதா என பார்க்கவும்.

✅ Unnecessary Redirects இருந்தால், Delete செய்து Save செய்யவும்.


🔍 Example: | From (Old URL) | To (New URL) | Status | |---------------|-------------|--------| | /wrong-url  | /correct-url | ✅ OK | | /existing-post | /same-post | ❌ ERROR (Loop) | | /post-url | https://same-site.com/post-url | ❌ ERROR (Self-Redirect) |


📌 Step 2: Check If the Post URL is Correct

✅ Check your Post URL:


1. Blogger Posts > View Post மூலம் Actual URL பார்க்கவும்.


2. Browser-ல் Copy & Paste செய்து வேலை செய்கிறதா எனச் சோதிக்கவும்.


3. Wrong Custom Redirects இருந்தால், Remove & Save செய்யவும்.


🔍 Example:


Wrong Redirect: /old-post → /old-post (Loop Error)


Correct Redirect: /old-post → /new-post (Valid Redirect)


📌 Step 3: Remove Conflicting JavaScript in Theme (Advanced Users)

✅ Blogger Theme > Edit HTML சென்று Custom Redirect Scripts ஏதாவது உள்ளதா என பார்க்கவும்.

✅ Ctrl + F அழுத்தி window.location.href அல்லது redirect தேடவும்.

✅ Unwanted Scripts இருந்தால், Remove செய்யவும்.


🔍 Common Redirect Code Causing Errors:             [<style type="text/css">

<script>

    window.location.href = "https://yoursite.com";

</script>


Fix:


<script>

    if (window.location.pathname !== "/correct-url") {

        window.location.href = "https://yoursite.com/correct-url";

    }

</script>]


📌 Step 4: Clear Cache & Test the Blog Again

✅ Clear Browser Cache & Cookies (Ctrl + Shift + Del)

✅ Test in Incognito Mode

✅ Check Mobile & Desktop View


3️⃣ Picture Explanation (How Redirect Errors Happen & 


Blogger-ல் HTTPS to HTTP Redirect Error ஏற்பட்டால், அதன் காரணங்கள் மற்றும் தீர்வுகளைப் பார்ப்போம்.


🔹 1. Blogger HTTPS Settings Check (Main Fix)


✅ Blogger Dashboard > Settings > HTTPS சென்று கீழே உள்ளதை சரிபார்க்கவும்:


HTTPS Availability → ✅ ON இருக்க வேண்டும்.


HTTPS Redirect → ✅ ON இருக்க வேண்டும்.


❌ HTTP (Non-SSL) Redirect செய்ய முடியாது.


> Blogger HTTPS Enabled செய்தால், HTTP Version Auto Redirect ஆகும்.

நீங்கள் HTTPS Enabled செய்த பிறகு HTTP-க்கு மீண்டும் திருப்ப முயற்சித்தால், அது ERROR தரும்.


🔹 2. Remove Any Custom Redirect (If Added)


✅ Settings > Custom Redirects சென்று http://yourblog.com → https://yourblog.com போல எந்த Redirects இருக்கிறதா என சரிபார்க்கவும்.

✅ Unnecessary Redirects இருந்தால், Delete செய்து Save செய்யவும்.


🔹 3. Check Your Theme’s JavaScript Redirect (If Any)


✅ Blogger > Theme > Edit HTML சென்று Ctrl + F அழுத்தி window.location.href அல்லது redirect தேடவும்.

✅ கீழே உள்ள Code இருந்தால், Remove செய்யவும்:

Code box

[<style type="text/css"> <script>

    if (window.location.protocol === "http:") {

        window.location.href = "https://yourblog.com" + window.location.pathname;

    }

</script>


✅ Fix:


<script>

    if (window.location.protocol !== "https:") {

        window.location.href = "https://" + window.location.host + window.location.pathname;

    }

</script>]


🔹 (This ensures safe HTTPS Redirection Without Loop Error)


🔹 4. Cloudflare Users (If Using Custom Domain)


✅ If You Use Cloudflare for SSL, Check These:


1. Cloudflare Dashboard > SSL/TLS சென்று "Flexible" என இருந்தால், அதை "Full (Strict)" ஆக மாற்றவும்.



2. Page Rules Check செய்யவும் (Ensure No Conflicting HTTP to HTTPS Redirects).

விரைவில் கூகுள்-லில் பேஜ் இன்டெக்ஸ் ஆக google நியூஸ் அப்ரூவல் பெறவும் இங்கு கிளிக் செய்து பார்க்கவும்

🔹 5. Clear Browser Cache & Check Again


✅ Clear Cache & Cookies (Ctrl + Shift + Del)

✅ Try Incognito Mode

✅ Check in a Different Browser (Chrome, Firefox, Edge, Mobile)



🚀 Quick Summary (Fixes Based on Issue)


கருத்துகள்

இந்த வலைப்பதிவில் உள்ள பிரபலமான இடுகைகள்

என் வாழ்கையின் இரு முனைகள் – பண்ணைக்காட்டில் இருந்து திருப்பூர்க்கு ஒரு பயணம்

பெண்களின் அமைதியான தியாகம் – வீட்டு வாழ்க்கையின் மறைக்கப்பட்ட பக்கம்

ரத்த அழுத்தம், இதயம், நினைவாற்றல் எல்லாமே ஒரே காய்கறியில் தீர்வு! பீட்ரூட் ரகசியம்