Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Last active April 10, 2019 17:21
Show Gist options
  • Save Asikur22/cc12603c89e675ac2cb40bbc048e1a48 to your computer and use it in GitHub Desktop.
Save Asikur22/cc12603c89e675ac2cb40bbc048e1a48 to your computer and use it in GitHub Desktop.
[Redirect urls exactly, just change domain name with Apache] #htaccess #URL
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