Redirect non-www and non-http to https
问题 Yesterday I Installed SSL on the server. Since than I can't reach some pages. www.example.com/amsterdam/shoes example.com/amsterdam/ ^ both do not redirect to https://, not even http:// www.example.com/amsterdam ^ does redirect to https:// How do I redirect all pages to HTTPS with www via .htaccess? 回答1: RewriteEngine on RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^ https://www.example.com%{REQUEST_URI} [NC,L,R=301,NE] This will redirect both http or non-www to