OpenCart Web サイトを非 www から www バージョンにリダイレクトする際に問題が発生しています。
他の人の投稿からいくつかの解決策を試しましたが、それらはすべて私のサイトでは機能しないようです.
現在、私の .htaccess ファイルは次のようになっています。
# SEO URL Settings
RewriteEngine On
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [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]