Skip to content

Instantly share code, notes, and snippets.

@ru2fac
Created November 13, 2018 13:43
Show Gist options
  • Select an option

  • Save ru2fac/28ec8451d37872e95aa52572ec3d40b3 to your computer and use it in GitHub Desktop.

Select an option

Save ru2fac/28ec8451d37872e95aa52572ec3d40b3 to your computer and use it in GitHub Desktop.
301 redirect from WWW to without WWW
# Insert this code to .htaccess file
RewriteEngine on
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.domain\.ru$ [NC]
RewriteRule ^(.*)$ https://domain.ru/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment