Last active
April 10, 2019 17:21
-
-
Save Asikur22/cc12603c89e675ac2cb40bbc048e1a48 to your computer and use it in GitHub Desktop.
[Redirect urls exactly, just change domain name with Apache] #htaccess #URL
This file contains hidden or 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
RewriteEngine On | |
RewriteCond %{HTTP_HOST} ^asique.me$ [OR] | |
RewriteCond %{HTTP_HOST} ^www.asique.me$ | |
RewriteRule ^(.*)$ https://asique.net/$1 [R=301,L] | |
##Redirect Type | |
##301 Permanent Redirect | |
##307 Temporary Redirect |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment