Answers for "apache redirect non www to www"

0

redirect www to non www

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
Posted by: Guest on May-29-2020
1

apache 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>
Posted by: Guest on December-21-2020

Code answers related to "apache redirect non www to www"

Browse Popular Code Answers by Language