Domain Forwarding Glossary

Every redirect, DNS, and domain forwarding term explained — no jargon, no fluff. Bookmark this page and come back whenever you need a clear answer.

#

.htaccess

An .htaccess file is a configuration file used by Apache web servers to control server behavior on a per-directory basis. It's commonly used for URL redirects, access control, and URL rewriting — without modifying the main server configuration.

301 Redirect

A 301 redirect is a permanent redirect that tells browsers and search engines that a URL has moved permanently to a new location, transferring approximately 90-99% of link equity (ranking power) to the new URL.

302 Redirect

A 302 redirect is a temporary redirect that tells browsers and search engines a URL has temporarily moved to a different location. Unlike a 301, search engines keep the original URL indexed and do not transfer link equity.

303 Redirect

A 303 redirect (See Other) is an HTTP status code that tells the browser to follow the redirect using a GET request, regardless of the original request method. It's commonly used after form submissions to prevent duplicate POST requests.

307 Redirect

A 307 Temporary Redirect is an HTTP status code that works like a 302 but strictly preserves the original HTTP method. If the original request was a POST, the redirected request will also be a POST.

308 Redirect

A 308 Permanent Redirect is an HTTP status code that works like a 301 but strictly preserves the original HTTP method. If the original request was a POST, the redirected request will also be a POST.

404 Not Found

A 404 Not Found is an HTTP status code indicating that the server cannot find the requested URL. It means the page doesn't exist — either it was never created, has been deleted, or the URL is misspelled.

410 Gone

A 410 Gone is an HTTP status code indicating that the requested resource has been permanently deleted from the server with no forwarding address. Unlike a 404, it explicitly tells search engines the page will never come back.

C

CAA Record

A CAA (Certificate Authority Authorization) record specifies which certificate authorities (CAs) are allowed to issue SSL/TLS certificates for a domain. It's a security measure that prevents unauthorized CAs from issuing certificates for your domain.

Canonical URL

A canonical URL is the preferred version of a web page that search engines should index when multiple URLs serve the same or very similar content. It's specified using a <link rel='canonical'> tag in the page's HTML head.

Catch-All Redirect

A catch-all redirect is a rule that forwards any request to a domain — regardless of the path or subdomain — to a single destination. It acts as a safety net, ensuring no visitor gets a 404 error on the forwarded domain.

CDN (Content Delivery Network)

A CDN (Content Delivery Network) is a globally distributed network of servers that delivers content from the server closest to the user. CDNs reduce latency by caching content at edge locations around the world.

Certificate Authority (CA)

A certificate authority (CA) is a trusted organization that issues digital SSL/TLS certificates. Browsers and operating systems maintain lists of trusted CAs, and only certificates from these CAs are accepted without warnings.

Client-Side Redirect

A client-side redirect is a redirect executed by the browser after a page has been loaded, using JavaScript or a meta refresh tag. Unlike server-side redirects, the browser must download and process the page before the redirect occurs.

Country Code TLD (ccTLD)

A country code top-level domain (ccTLD) is a two-letter TLD assigned to a specific country — like .uk for the United Kingdom, .de for Germany, .ca for Canada, and .jp for Japan.

Crawl Budget

Crawl budget is the number of pages a search engine will crawl on your site within a given timeframe. It's determined by your site's authority, server speed, and the number of URLs. For large sites, crawl budget optimization is critical.

D

Deep Linking

Deep linking is the practice of linking to a specific page or resource within a website rather than its homepage. In domain forwarding, preserving deep links means old-domain.com/specific-page correctly redirects to new-domain.com/specific-page.

Device Redirect

A device redirect sends visitors to different destination URLs based on their device type — desktop, mobile, or tablet. The server inspects the User-Agent header to determine the device and redirects accordingly.

DNS (Domain Name System)

The Domain Name System (DNS) is the internet's phone book — it translates human-readable domain names (like example.com) into IP addresses (like 93.184.216.34) that computers use to connect to each other. Modern security enhancements like [DNS-over-HTTPS](/glossary/dns-over-https) and [DNSSEC](/glossary/dnssec) add encryption and verification to this process.

DNS A Record

An A record (Address record) is a DNS record that maps a domain name to an IPv4 address. It's the most fundamental DNS record type, telling browsers which server to contact when visiting a domain.

DNS ALIAS Record

An ALIAS record (also called ANAME) is a non-standard DNS record type that works like a CNAME but can be used at the apex domain. It resolves the target hostname to an IP address at the DNS server level, then returns that IP as if it were an A record.

DNS Cache

A DNS cache stores previously looked-up DNS records locally — in your browser, operating system, or ISP's resolver — so repeat visits to the same domain don't require a full DNS lookup every time.

DNS CNAME Record

A CNAME (Canonical Name) record is a DNS record that maps one domain name to another, creating an alias. Instead of pointing to an IP address like an A record, a CNAME points to another hostname — which is then resolved to an IP address.

DNS Lookup

A DNS lookup is the process of querying DNS servers to find the IP address or other records associated with a domain name. It's the first step that happens when you type a domain into your browser.

DNS Over HTTPS (DoH)

DNS over HTTPS (DoH) encrypts DNS queries by sending them through HTTPS connections instead of plain UDP. This prevents ISPs, network administrators, and attackers from seeing or tampering with which domains you're visiting.

DNS Propagation

DNS propagation is the process by which updated DNS records spread across the global network of DNS resolvers. After changing a DNS record, it can take minutes to 48 hours for all resolvers worldwide to serve the updated information.

DNS Zone File

A DNS zone file is a text file that contains all the DNS records for a domain. It defines the mappings between domain names and IP addresses, mail servers, nameservers, and other DNS data.

DNSSEC

DNSSEC (Domain Name System Security Extensions) adds cryptographic signatures to DNS records to verify their authenticity. It prevents attackers from tampering with DNS responses, protecting against cache poisoning and man-in-the-middle attacks.

Domain Forwarding

Domain forwarding is a specific type of URL forwarding where an entire domain name is configured to redirect all traffic to a different domain. It's used during rebrands, to protect brand variations, or to consolidate multiple domains.

Domain Name

A domain name is a human-readable address for a website — like example.com or google.com. It's the text you type into a browser's address bar, which DNS translates into the IP address of the server hosting the website.

Domain Parking

Domain parking means registering a domain name without connecting it to an active website. Parked domains typically show a placeholder page, advertising, or nothing at all. They're held for future use, resale, or brand protection.

Domain Privacy

Domain privacy (also called WHOIS privacy) is a service that hides a domain owner's personal information — name, address, phone number, email — from the public WHOIS database by replacing it with the privacy service's details.

Domain Registrar

A domain registrar is a company authorized to sell and manage domain name registrations. Registrars like Namecheap, GoDaddy, Porkbun, and Cloudflare let you purchase, renew, and configure domains.

Domain Registry

A domain registry is the organization that manages a top-level domain (TLD) — like Verisign for .com or Public Interest Registry for .org. Registries maintain the authoritative database of all domains registered under their TLD.

Domain Transfer

A domain transfer moves a domain's registration from one registrar to another — for example, moving example.com from GoDaddy to Namecheap. This changes who manages the domain's registration and billing, not necessarily its DNS.

S

SAN Certificate (Subject Alternative Name)

A SAN certificate (Subject Alternative Name certificate) is an SSL/TLS certificate that secures multiple different domain names on a single certificate. Unlike wildcard certificates, SAN certificates list each domain explicitly.

Self-Signed Certificate

A self-signed certificate is an SSL/TLS certificate that is signed by its own creator rather than a trusted certificate authority. Browsers don't trust self-signed certificates and display security warnings.

Server-Side Redirect

A server-side redirect is a redirect handled by the web server before any page content is sent to the browser. The server responds with an HTTP 3xx status code and a Location header, telling the browser to go to a different URL.

SOA Record

An SOA (Start of Authority) record contains administrative information about a DNS zone, including the primary nameserver, the responsible party's email, and timing parameters for zone transfers and caching.

SRV Record

An SRV (Service) record specifies the hostname and port for specific services running on a domain, like VoIP, messaging, or game servers. It's more targeted than an A record because it includes both the server location and the port number.

SSL Certificate

An SSL/TLS certificate is a digital certificate that authenticates a website's identity and enables an encrypted HTTPS connection. Without a valid certificate on the source domain, visitors see browser security warnings when a domain redirect uses HTTPS.

SSL Termination

SSL termination (also called TLS termination) is the process of decrypting encrypted HTTPS traffic at a server or load balancer before forwarding the request internally. The 'termination' point handles the certificate and encryption.

Subdomain

A subdomain is a prefix added to a domain name that creates a separate address within the same domain hierarchy — for example, blog.example.com or shop.example.com. Subdomains are set up as DNS records under the parent domain.

U

Uptime

Uptime is the percentage of time a service is operational and accessible. A 99.9% uptime means the service is down for no more than 8.76 hours per year. For domain forwarding, uptime determines how reliably visitors are redirected.

URI (Uniform Resource Identifier)

A URI (Uniform Resource Identifier) is a string that identifies a resource. URLs are a subset of URIs — every URL is a URI, but not every URI is a URL. In practice, the terms are often used interchangeably on the web.

URL (Uniform Resource Locator)

A URL (Uniform Resource Locator) is the complete web address used to locate a specific resource on the internet. It includes the protocol, domain name, path, and optionally query strings and fragments — like https://example.com/blog?page=2#intro.

URL Forwarding

URL forwarding is the process of automatically sending visitors from one URL to a different URL. It's a general term that encompasses domain forwarding, path-level redirects, and any mechanism that maps one web address to another.

URL Fragment

A URL fragment (also called hash or anchor) is the part of a URL after the # symbol. It identifies a specific section within a page — like https://example.com/page#section2. Fragments are handled entirely by the browser and never sent to the server.

URL Masking

URL masking (also called domain masking or URL cloaking) is a technique that displays the content of one URL while keeping the original URL visible in the browser's address bar. It typically works by embedding the destination in an iframe.

URL Path

The URL path is the portion of a URL after the domain name that identifies a specific page or resource on the server. In https://example.com/blog/my-post, the path is /blog/my-post.

URL Scheme

The URL scheme (also called protocol) is the first part of a URL that identifies the protocol used to access the resource — like https://, http://, ftp://, or mailto:. For web forwarding, the relevant schemes are http:// and https://.

URL Shortening

URL shortening is the practice of creating a short URL that redirects to a longer URL. Services like Bitly, TinyURL, and Rebrandly create short links, while domain forwarding services let you create branded short URLs on your own domain.

URL Slug

A URL slug is the human-readable portion of a URL that identifies a specific page — the part that comes after the domain and path prefix. For example, in example.com/blog/my-first-post, the slug is 'my-first-post'.

UTM Parameters

UTM parameters (Urchin Tracking Module) are tags added to the end of a URL that track where traffic comes from. They help analytics tools like Google Analytics identify the source, medium, and campaign that generated a visit.

Need Help With Your Redirect Setup?

Skip the jargon. Domain Forward handles DNS, HTTPS, and redirect types automatically.