Skip to content

Instantly share code, notes, and snippets.

@meetsohail
Created December 3, 2021 20:04
Show Gist options
  • Save meetsohail/b32363fbb9a9aaeca5f98eab38f26ecb to your computer and use it in GitHub Desktop.
Save meetsohail/b32363fbb9a9aaeca5f98eab38f26ecb to your computer and use it in GitHub Desktop.
Laravel www to non-www redirect using .htaccess
# Redirect www to non-www
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment