Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save edwinsiebel/e0b477b1332079b7773d256718e248f1 to your computer and use it in GitHub Desktop.

Select an option

Save edwinsiebel/e0b477b1332079b7773d256718e248f1 to your computer and use it in GitHub Desktop.
Redirect to new domain, keeping structure
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^old-subdomain.domain.nl$ [OR]
RewriteRule (.*)$ https://new-subdomain.domain.nl/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment