WWW to NON WWW Urls (Remove WWW) using Apache (.htaccess)

后端 未结 2 508
终归单人心
终归单人心 2021-01-21 13:49

I have to redirect my website from https://www.example.com/ to https://website.com/.

SSL is properly installed on my server.

2条回答
  •  臣服心动
    2021-01-21 14:14

    Did you Try this ?

    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^www\.(.*)
    RewriteRule ^.*$ https://%1/$1 [R=301,L]
    

    Generic htaccess redirect www to non-www

提交回复
热议问题