ウェブサイトはopencart cmsを使用し、SEO URLが有効になっているため、.htaccessは次のようになります。
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]
すべてが完璧に機能しますが、www 以外から www への 301 リダイレクトを追加したかったので、以下を追加しました。
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*) http://www.example.com/$1 [R=301,L]
動作しますが、カテゴリまたは製品のリンクをリダイレクトしようとすると、「index.php? route =」が追加されます
例:
「www.example.com/cats」、「www」なしで「example.com/cats」を試すと、リンクは www.example.com/index.php? ルート=猫