0
我需要通過.htaccess文件將我的WordPress網站重定向到HTTP到HTTPS。 (例如http://www.example.com)至(例如https://www.example.com) 請幫我解決問題。如何在HTTP中使用.htaccess文件將HTTP流量重定向到HTTPS
我需要通過.htaccess文件將我的WordPress網站重定向到HTTP到HTTPS。 (例如http://www.example.com)至(例如https://www.example.com) 請幫我解決問題。如何在HTTP中使用.htaccess文件將HTTP流量重定向到HTTPS
重定向到WordPress中的https。和WordPress的承擔你的所有要求。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule^https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
這裏爲什麼你在重寫規則中提到博客,我無法理解這一點。 –
你試過嗎? https://stackoverflow.com/a/13997498/6244709 – Serraniel
或者這個:https://stackoverflow.com/questions/4083221/how-to-redirect-all-http-requests-to-https – Picard
謝謝@Picard它的工作對我來說太棒了:) –