Last active
July 18, 2018 09:11
-
-
Save arkadiusjonczek/19a9c5c96a4844eef03b02d36623dbad to your computer and use it in GitHub Desktop.
301 Redirect all requests to another Domain #tags: Apache, SEO
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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