1

次のように URL を書き換えるか、リダイレクトする必要があります。

http://www.mydomain.com/shop/product/keep-this-please

http://www.mydomain.com/keep-this-please

私のショップ(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 だけを書き換えるにはどうすればよいですか?

4

1 に答える 1