Skip to content

Instantly share code, notes, and snippets.

View sajupro's full-sized avatar

Salah Uddin sajupro

View GitHub Profile
@sajupro
sajupro / withwww.apacheconf
Created April 7, 2020 18:40
Redirect all non-www urls to www with .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]
</IfModule>
@sajupro
sajupro / non-www.apacheconf
Created April 7, 2020 18:10
Redirect all www urls to non-www with .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.yourdomain\.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
</IfModule>