opencart で検索ページの URL を書き換える方法。現在の URL は次のとおりです。
http://IP/opencart/index.php?route=product/search&filter_name=24
しかし、次のように表示する必要があります。
http://localhost/opencart/product/search/42
またはユーザーフレンドリーな任意の URL 形式で。私はこれを試しました:
RewriteEngine On
RewriteBase /opencart
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]
RewriteBase /opencart
RewriteRule ^search$ index.php?route=product/search [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/search$
RewriteRule ^([^?]*) index.php?route=$1 [L,QSA]