1000 FAQs, 500 tutorials and explanatory videos. Here, there are only solutions!
Redirect the visitor (domain, web page, etc.)
This guide explains how to redirect a domain name directly to another or how to automatically send visitors to your website to another page address (internal or external URL).
Introduction
- To redirect traffic, you will need to act…
- … or on the domain name itself (it must be hosted by Infomaniak and its DNS must be Infomaniak's as well),
- … or on the code present in your pages (page .htaccess, homepage, etc.) if you have a website.
⚠️ For additional help contact a partner or launch a free tender — also discover the role of the host.
Act on the domain name
via Web Redirection Tool
The tool available on the Manager allows you to easily redirect the domain name (or subdomain) to the Internet address of your choice.
via DNS modifications or A record
Change the DNS of the domain name or modify its A/AAAA records to direct web traffic to another provider.
Act on the page code…
… via HTML code to insert
Insert this line of code between the <head>
and </head>
tags of your homepage (usually named index.html):
<meta http-equiv="refresh" content="5;url=INSERT-HERE-NEW-URL">
Replace 5
with the desired wait time in seconds (0 for immediate redirection).
The search engine Google indicates that it is preferable to use a 301 redirect on the server side (read more below). The W3C also advises against using it.
… via PHP code to insert
If the site page has a .php extension, insert this header function call at the very top of the file:
header("refresh: 5; url=INSERT-HERE-NEW-PAGE-URL");
… via .htaccess file
To redirect all traffic targeting your site (regardless of the page called) to another address, insert this into the .htaccess
file at the root of your site:
RewriteEngine On
RewriteRule ^(.*)$ INSERT-HERE-NEW-URL/$1 [R=301]
To target the page that should be redirected:
Redirect permanent /ancienne_page.html insérer ici adresse URL de destination
Redirectpermanent
, Redirect permanent
and Redirect 301
are equivalent commands.
Here is another example of redirecting a sub-section to the homepage (this directive has the advantage of working with "deep links" unlike a permanent redirect):
RewriteEngine on
RewriteRule "old/path/url "/" [L]
Refer to this other guide on this topic.