サイトをmagentoの新しいドメイン名に移動しました。ホームページはうまく機能しますが、すべてのリンクで404が表示されます。
httpd.confで「*LoadModulerewrite_modulemodules/mod_rewrite.so*」が有効になっていることを確認しました
.htaccessには次のエントリがあります。
## rewrite everything else to index.php
RewriteRule .* index.php [L]
古いサイト
http://old_site.com/ << this works
http://old_site.com/en/contentpage.html << this works
新しいサイト
http://newsite.com/shop1/en
http://newsite.com/shop1/en/contentpage.html << this is a typical link from the home page
<< link from new site takes me here, but this gives 404 error
http://newsite.com/shop1/index.php/en/contentpage.html < this link, however, does works
http://newsite.com/shop1/en/contentpage.html << link from new site takes me here, but this gives 404 error
。