UrlEdge
Core Features

Bulk CSV Management

Manage large scale redirect migrations and updates using standard CSV files. We support up to 50,000 rows per import.

CSV Import Format

Your CSV file must have a header row. The column order does not matter, but the headers must match exactly.

# example.csv
source,destination,code
/old-page,https://example.com/new-page,301
/blog/post-1,https://medium.com/@user/post-1,302
/shop/product-a,https://store.com/products/a,301

Supported Columns:

  • source (Required): The path to redirect from (e.g., /about).
  • destination (Required): The full URL to redirect to.
  • code (Optional): 301, 302, 307, or 308. Defaults to 302 if omitted.

Tip: You can also include a description column to add notes to your redirects.

Exporting Data

You can export your entire project's redirect rules at any time. This is useful for backups or migrating to another project.

Go to Settings > Data Management and click "Export CSV". The file will generate in a background job and be emailed to you if it exceeds 1,000 rows.

Validation Rules

  • Circular Redirects: We automatically detect if a redirect points to itself.
  • Duplicate Sources: If a source path already exists, the import will skip that row unless you select "Overwrite Existing" during upload.
  • Invalid URLs: Rows with malformed destination URLs (e.g., missing protocol) will be rejected.