2016-06-15 11 views
0

私の店でSSLをセットアップしましたが、2つの問題が発生します。OpenCart 2:SSLに関するURLとレビューの問題

拳の1つは、http://example.com/name-of-the-product(SSLなし)の代わりにhttps://example.com/index.php?route=name-of-the-productのようになりました。

もう1つは、レビューのページングが機能しなくなることです。私はレビューを見るためにページ2または3などに行くことができません。ページ2または3などを表示しようとすると、「このページは認証されていないソースからスクリプトを読み込もうとしています」という通知がアドレスバーに表示されます。

誰もこの問題を解決する方法を知っていますか?

My OpenCartは2.0.2.0バージョンです。

答えて

4
# SEO URL Settings 
RewriteEngine On 
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie./becomes /shop/ 

RewriteBase/

#This setting force logo url to it's home page 
RewriteCond %{QUERY_STRING} ^route=common/home$ 
RewriteRule ^index\.php$ https://www.yourdomain.com/? [R=301,L,NE,NC] 

RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R=301,L,NE] 

RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L] 
RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L] 
RewriteRule ^system/download/(.*) index.php?route=error/not_found [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) 
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] 
関連する問題