Asked by Olivia · · 1 answer
Redirect individual files
Redirect 301 /oldfile.htm /newfile.htm
To redirect one specific file to another domain such as example.com/oldfile.htm
to example.net/newfile.htm
:
Redirect 301 /oldfile.htm https://example.net/newfile.htm
Redirect an old domain to a new domain
Code in the example.com domain’s .htaccess file:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ https://example.net/$1 [L,R=301,NC]
1
0