简体   繁体   中英

Apache2 not redirecting non-www request to www

I am trying to redirect my all non-www requests to www . Here is my apache config setting.

RewriteEngine on
RewriteCond %{SERVER_NAME} =example.com [OR]
RewriteCond %{SERVER_NAME} =www.example.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]

I have changed <VirtualHost *:443> as:

<IfModule mod_ssl.c>
 <VirtualHost *:443>
   RewriteEngine On
   RewriteCond %{HTTP_HOST} ^example.com [NC]
   RewriteRule ^(.*)$ https://www.example.com [L,R=301]
 </VirtualHost>
</IfModule>

Now it's working fine.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM