将非www重定向到www for https

时间:2016-05-15 16:52:46

标签: .htaccess redirect https ssl-certificate http-redirect

我有以下重定向

RewriteCond %{HTTP_HOST} !^www\. 
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] 
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

如何将非WWW https重定向到WWW?

htaccess位于public_html文件夹

2 个答案:

答案 0 :(得分:3)

您可以使用以下内容:

for (row = xa; row < 50; row++) { 
// need to know first if there is any '1' in the next line
    if (|schemaArray[row] == 1) {
        printf("1 found in row %d\n",row );
    }  
}

这将重定向

答案 1 :(得分:2)

我在Joomla网站上使用此功能,并将所有内容重定向到https://www 我无法在其他地方看到这个解决方案,所以我想分享它

RewriteCond %{HTTP_HOST} ^domainname\.co.uk [NC]
RewriteRule ^(.*)$ https://www.domainname.co.uk/$1 [R=301,L]