1

ウェブサイトは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? ルート=猫

4

1 に答える 1

6

ルーティングルールの前にすべてのリダイレクトを追加する必要があります(たとえば、ルーティングするルールがありますindex.php。したがって、htaccessファイルは次のようになります。

# redirect rules first
RewriteCond %{HTTP_HOST} ^mysite.com$ [NC]
RewriteRule ^(.*) http://www.mysite.com/$1 [R=301,L]

# then routing rules
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]
于 2012-12-11T00:23:16.083 に答える