RewriteCond %{REQUEST_URI} index\.php
RewriteCond %{QUERY_STRING} (path=.*)\/$
RewriteRule .* index.php?%1 [R=301,L]
http://host.local/index.php?path=service/contact/
http://host.local/index.php?path=common/settings/
>>> надо преобразовать в:
http://host.local/index.php?path=service/contact
http://host.local/index.php?path=common/settings
RewriteCond %{REQUEST_URI} index\.php
RewriteCond %{QUERY_STRING} .*\/$
RewriteRule ^(.+)\/$ $1 [L,R=301,QSA]
# redirect query to google search
RewriteCond %{REQUEST_URI} /search/(.*) [NC]
RewriteRule (.*) http://www.google.com/search?q=$1 [R,NC,L]
Спасибо!