Beta documentation. This is an early preview — content is still in active development. Feedback helps shape the final release. Share your thoughts or join the discussion.

Migrating to Wapka

1. Download your HTML, CSS, JS, and image files

On this page

From Static Sites

  1. Download your HTML, CSS, JS, and image files
  2. Upload them via File Manager or REST API
  3. Your site is live at your Wapka domain

From WordPress

  1. Export your content as HTML or JSON
  2. Upload static assets to Wapka
  3. Recreate dynamic features using Lua Framework and Dataset

From Other Hosts

# Download your entire site
wget -r -l inf -p -k https://youroldsite.com

# Upload to Wapka via REST API
for file in $(find . -type f); do
  curl -X POST https://api.wapka.org/v1/sites/123/files \
    -H "X-API-Key: your-key" \
    -F "file=@$file"
done

Checklist

  • Upload all static assets
  • Set up custom domain
  • Configure redirect rules for old URLs
  • Submit new sitemap to Google
  • Test all pages and forms

Need help? Reach out on WhatsApp for migration assistance.

Previous SEO Best Practices