Skip to content

Instantly share code, notes, and snippets.

@chrdesigner
Created December 21, 2023 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrdesigner/d14515e454bf2eb9735d164ec7ee3bd6 to your computer and use it in GitHub Desktop.
Save chrdesigner/d14515e454bf2eb9735d164ec7ee3bd6 to your computer and use it in GitHub Desktop.
htaccess redirect www to non-www
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment