Possible Reasons for Redirect Error in Blogger

SHARE:

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)


COMMENTS

பெயர்

உலகின் முக்கிய தினங்கள்,1,Blogger Template,9,FlatBellyTips WeightLossHacks,1,Google Analytics,1,Hair Long Tamil,1,Health,20,Maha Shivaratri 2025 Kovai Isa Maiya 2025,1,Money,13,News,4,Personal loan,1,Tiruppur,2,Tourist place,3,Tourist plases,2,
ltr
item
Kavithai in malay: Possible Reasons for Redirect Error in Blogger
Possible Reasons for Redirect Error in Blogger
Possible Reasons for Redirect Error in Blogger
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjA39G2ECp-MB6ojblZszXBob3oNMXfq1TYktG4A1EXVkNgx0kdt3JXxg9PsD7b3XknRUS46cnqpthf_16XVHYvIZAnYrH13PR98VjZ1aE3Jiu581PAdJPPbodOO_YjqmrV7gmYlUitwsDfvzzM58KHLR5zrbfYtDVQh4Ch2WYkdMGW9ScwMMa-3E7FtDg/w320-h180/1000005317.jpg
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjA39G2ECp-MB6ojblZszXBob3oNMXfq1TYktG4A1EXVkNgx0kdt3JXxg9PsD7b3XknRUS46cnqpthf_16XVHYvIZAnYrH13PR98VjZ1aE3Jiu581PAdJPPbodOO_YjqmrV7gmYlUitwsDfvzzM58KHLR5zrbfYtDVQh4Ch2WYkdMGW9ScwMMa-3E7FtDg/s72-w320-c-h180/1000005317.jpg
Kavithai in malay
https://dinesh2222014.blogspot.com/2025/03/possible-reasons-for-redirect-error-in.html
https://dinesh2222014.blogspot.com/
https://dinesh2222014.blogspot.com/
https://dinesh2222014.blogspot.com/2025/03/possible-reasons-for-redirect-error-in.html
true
2375748365847085435
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content