我使用Heroku PHP與SSL上。一切安裝和HTTPS完美。 我的域名託管於Godaddy。 Heroku作爲apache web服務器。 但http://mysite.com,www.mysite.com將不會重定向到https://www.mysite.com 這就是我想要的。強制所有頁面HTTPS
我改變了.htaccess文件到以下
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} protected [NC,OR]
RewriteCond %{REQUEST_URI} protected2 [NC,OR]
RewriteCond %{REQUEST_URI} protected3 [NC]
你可以添加轉發規則嗎? – Qben
看到這個(它適用於我):https://stackoverflow.com/questions/31467871/setting-up-https-redirects-on-heroku-laravel-instance# – Onthemail