我想重定向https://example.com到https://www.example.com对于我的网站。您能帮我提供代码以将其放在 .htaccess 文件中吗?该网站在 magento 中。
答案1
重写引擎开启
RewriteCond %{HTTP_HOST} !^www.
重写规则 ^(.*)$https://www.%{HTTP_HOST}/$1 [R=301,L]
就这样
我想重定向https://example.com到https://www.example.com对于我的网站。您能帮我提供代码以将其放在 .htaccess 文件中吗?该网站在 magento 中。
重写引擎开启
RewriteCond %{HTTP_HOST} !^www.
重写规则 ^(.*)$https://www.%{HTTP_HOST}/$1 [R=301,L]
就这样