編集: 何かを追加する必要があります。まず、SEO のために URL 表示を変更したいです。ウェブサイトにアクセスするために www を使用する場合、問題はありません。2 番目のリンクが表示され、すべて問題ありません。
しかし、リンクから「www」を削除すると、最初の URL に変更されてしまい、それは望ましくありません。
変わりたい
http://www.mysite.com/index.php? route =epson-claria-uyumlu-yazici-kartus-dolum-murekkebi-500g.html
に
http://www.mysite.com/epson-claria-uyumlu-yazici-kartus-dolum-murekkebi-500g.html
どうすればそれができますか?
私は試した
RewriteCond %{QUERY_STRING} ^_route_=(.*)$
RewriteRule ^index\.php$ /%1 [R=301,L]
しかし、それは機能していません。
私の.htaccessは
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]
RewriteCond %{QUERY_STRING} ^route=common/home$
RewriteRule ^index\.php$ http://www.mysite.com? [R=301,L]
RewriteCond %{HTTP_HOST} !^www\.mysite\.com$
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L]