Domain Forwarding

Domain Fundamentals
Also called domain redirect or URL forwarding.
← Back to Glossary

What is Domain Forwarding?

Domain forwarding, also known as URL forwarding or domain redirect, is a DNS service that automatically redirects visitors from one domain to another destination URL. When someone types or clicks on the forwarded domain, they're automatically sent to a different website without any additional action required.

Types of Domain Forwarding

301 Redirect (Permanent)

Tells browsers and search engines the redirect is permanent:

302 Redirect (Temporary)

Indicates a temporary redirect:

Meta Refresh Redirect

HTML-based redirect with delay:

Common Use Cases

Brand Consolidation

Redirect multiple brand domains to main site:

companyname.net → companyname.com

company-name.com → companyname.com

thecompanyname.com → companyname.com

Marketing Campaigns

Short, memorable domains for campaigns:

summersale.com → mainsite.com/summer-promo

Domain Migration

When moving to new domain:

oldcompany.com → newcompany.com

Typo Protection

Catch common misspellings:

gooogle.com → google.com

How to Set Up Domain Forwarding

Via Registrar

Most registrars offer forwarding:

1. Log into registrar account

2. Select domain to forward

3. Enter destination URL

4. Choose redirect type (301/302)

5. Save settings

Via DNS

Using A record + web server:

1. Point A record to web server

2. Configure server to redirect

3. Set up SSL for HTTPS forwarding

Via Cloudflare

Page Rules for forwarding:

URL Match: *forwarded-domain.com/*

Forwarding URL: 301 → https://destination.com/$1

Domain Forwarding vs Domain Masking

FeatureForwardingMasking
URL changesYesNo
SEO impactPasses value (301)Can hurt SEO
ImplementationSimpleUses frames/proxy
RecommendedYesGenerally no

SEO Considerations

Best Practices

What to Avoid

Technical Implementation

Apache .htaccess

Redirect 301 / https://destination.com/

Nginx

server {

server_name forwarded-domain.com;

return 301 https://destination.com$request_uri;

}

Forwarding with Path Preservation

Maintain URL paths during redirect:

old.com/products/item → new.com/products/item

old.com/about → new.com/about

This is essential for maintaining SEO value and user experience during domain migrations.

Put This Knowledge to Work

Use DomScan's API to check domain availability, health, and more.