Skip to main content
Learn how to export your Lindo.ai website and host it on your own server or other platforms.

What Gets Exported

When you export a website, you receive a ZIP file containing:
  • HTML files for all pages
  • CSS stylesheets
  • JavaScript files
  • Images and media
  • Fonts
1

Export Your Website

  1. Go to your workspace
  2. Find the website you want to export
  3. Click the three-dot menu on the website card
  4. Select Export
  5. Wait for the ZIP file to download
2

Extract the Files

  1. Locate the downloaded ZIP file
  2. Extract to a folder on your computer
  3. Review the file structure
Typical structure:
my-website/
├── index.html
├── about.html
├── contact.html
├── css/
│   └── styles.css
├── js/
│   └── main.js
└── images/
    └── ...
3

Test Locally

Before deploying, test the site locally:
  1. Open the folder in a code editor
  2. Use a local server (e.g., Live Server extension)
  3. Or open index.html directly in browser
  4. Check all pages and links work
4

Deploy to Hosting

5

Update DNS (Custom Domain)

If using a custom domain:
  1. Add A record pointing to hosting IP
  2. Or add CNAME for subdomain
  3. Wait for DNS propagation
  4. Configure SSL certificate

Considerations

  • Exported sites are static HTML
  • Dynamic features may not work
  • Forms need backend configuration
  • Analytics need reconfiguration
  • Updates require re-export

When to Export

Export is useful when:
  • Moving to different hosting
  • Creating offline backup
  • Integrating with existing systems
  • Compliance requirements
  • Ending Lindo.ai subscription

Best Practices

  • Export regularly as backups
  • Test thoroughly before going live
  • Update links if domain changes
  • Reconfigure integrations
  • Document any customizations