0
我試圖強制HTTPS對我的投資組合中的每個請求,也從網址中刪除WWW。我已經成功然而移除請求WWW當我嘗試強制使用HTTPS,我給出的「重定向過多」試圖刪除www和強制HTTPS
錯誤這是我的htaccess文件:
# remove www. from HTTPS requests
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(patrickwhitehouse\.pw)$ [NC]
RewriteRule .* https://%1/$0 [R,L]
# redirect HTTP requests to HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www\.)?(patrickwhitehouse\.pw)$ [NC]
RewriteRule .* https://%1/$0 [R,L]
如果我手動輸入https://myurl.com,但它可以工作,但是當我訪問另一個頁面時,HTTPS會返回到HTTP。