Skip to the content.

Permalink Implementation Summary

What Was Implemented

All 51 articles now have permalink front matter:

---
layout: default
title: "Article Title"
date: 2025-08-28
permalink: /article-title/
categories: [category1, category2]
---

3. Jekyll Configuration Updates

4. Comprehensive Redirect System

Created _redirects file with 301 redirects for all old URLs:

5. Medium Import Guide

Created comprehensive guide (MEDIUM_IMPORT_GUIDE.md) with:

Benefits

For Medium Import

  1. Clean URLs: Simple, memorable URLs that work well with Medium’s system
  2. SEO Friendly: Shorter URLs that are easier to share and remember
  3. Consistent Format: Uniform structure across all articles
  4. Easy Maintenance: Simple to manage and update

For Existing Users

  1. Backward Compatibility: All old URLs redirect to new ones
  2. No Broken Links: Existing bookmarks and links continue to work
  3. SEO Preservation: 301 redirects maintain search engine rankings
  4. Smooth Transition: Users are automatically redirected to new URLs

Technical Implementation

Files Modified

Plugins Added

Build Process

Verification

Build Success

bundle exec jekyll build --verbose
# ✅ Build completed successfully in 5.654 seconds
# ✅ All 51 articles processed
# ✅ New permalink directories created
# ✅ Redirects configured

URL Examples

Old URLs (still work via redirects):

New URLs (clean permalinks):

Next Steps

1. Deploy to Production

2. Test Redirects

# Test old URLs redirect to new ones
curl -I "https://buildtales.dev/fintech/payments/2025/08/13/money-flow-bank-account.html"
# Should return 301 redirect to /money-flow-bank-account/

# Test new URLs work
curl -I "https://buildtales.dev/money-flow-bank-account/"
# Should return 200 OK

3. Import to Medium

4. Monitor

File Structure After Implementation

buildtales/
├── _config.yml                    # ✅ Updated permalink configuration
├── _redirects                     # ✅ Comprehensive redirect rules
├── _posts/                        # ✅ All articles have permalink front matter
├── MEDIUM_IMPORT_GUIDE.md        # ✅ Complete import documentation
├── PERMALINK_IMPLEMENTATION_SUMMARY.md # This summary
└── _site/                         # ✅ Generated with new permalinks
    ├── money-flow-bank-account/
    ├── publish-subscribe-pattern-software-architecture/
    ├── wire-transfers-explained/
    └── [all other article directories]

Success Metrics

Support

For any issues:

  1. Check Jekyll build logs
  2. Verify redirect configuration
  3. Test URLs locally before deployment
  4. Refer to MEDIUM_IMPORT_GUIDE.md for import questions

The implementation is complete and ready for production deployment and Medium import.