Skip to content

Instantly share code, notes, and snippets.

@tajidyakub
Last active September 20, 2018 23:17
Show Gist options
  • Save tajidyakub/9b27245f73ab0f977274966dd6005d85 to your computer and use it in GitHub Desktop.
Save tajidyakub/9b27245f73ab0f977274966dd6005d85 to your computer and use it in GitHub Desktop.
Redirect 301 to another domain .htaccess Apache in cPanel.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.domain.com [NC]
RewriteRule ^(.*)$ https://domain.co/$1 [L,R=301,NC]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment