I moved a site to a magento new domaine name. Home page works well but all the links give 404.
I verified that "*LoadModule rewrite_module modules/mod_rewrite.so*" is enabled in httpd.conf
.htaccess has this entry:
## rewrite everything else to index.php
RewriteRule .* index.php [L]
old site
http://old_site.com/ << this works
http://old_site.com/en/contentpage.html << this works
new site
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
.
/
) or is it a relative URL (doesn't begin with/
), and what's the URL of the page with the link you are clicking on? – Jon Lin