次のように URL を書き換えるか、リダイレクトする必要があります。
に
私のショップ(Magento)ディレクトリのhtaccessにはすでにこれがあります:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteBase /shop/
## always send 404 on missing files in these folders
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
## never rewrite for existing files, directories and links
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
## rewrite everything else to index.php
RewriteRule .* index.php [L]
</IfModule>
/shop/product/ を含む URL だけを書き換えるにはどうすればよいですか?