2016-09-09 98 views
0

我的magento網站正在裝載請求httphttp://my-magento-site.com。但是,當我嘗試LO負載使用https://my-magento-site.com它重定向到錯誤頁面,https://my-magento-site.com/cgi-sys/defaultwebpage.cgi。如何防止此問題,並重定向到http請求?如何將https請求重定向到magento中的http?

我嘗試添加該代碼在我的根.htaccess文件,但沒有自動跳轉,

RewriteEngine On 
RewriteCond %{HTTPS} on 
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] 

我該如何解決這個問題?

+0

希望這有助於你http://stackoverflow.com/questions/8371/how-do-you-redirect-https-to-http – Sasikumar

+0

你不應該重定向從https到http。改正問題。 –

回答

0

如果.htaccess重寫規則不起作用,然後您可以通過magento設置進行設置。 轉到>>系統>>配置>> web {under general tab} 你會發現不安全和安全的選項卡。 在這兩個URL中都寫入 基本URLhttp://my-magento-site.com你總是會重定向到http://僅

相關問題