Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Last active July 18, 2018 09:11
Show Gist options
  • Save arkadiusjonczek/19a9c5c96a4844eef03b02d36623dbad to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/19a9c5c96a4844eef03b02d36623dbad to your computer and use it in GitHub Desktop.
301 Redirect all requests to another Domain #tags: Apache, SEO
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)$ http://domain.de [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment