Reputation: 3267
I moved the 100% working magento site from live server to my localhost.
The moving done successfully.
But there have a problem is that the home page will display correctly.
But when i clicked on other navigation menus it displays 404 not found error message.
for examle this my site link:
http://localhost/bc/
Now the site is loaded perfectly,but when i click a menu,the url is :
http://localhost/bc/fresh-fruit.html
It displays 404 not found error.
If i included the index.php in betweemn them then that page loaded correctly that is:
http://localhost/bc/index.php/fresh-fruit.html
the above link loaded the clicked page correctly.
So how can i solve this problem?
What is the real problem is here?
This is the error message displayed:
Not Found
The requested URL /bc/fresh-fruit.html was not found on this server.
Upvotes: 0
Views: 4704
Reputation: 5918
It looks like URL rewriting is not working on your localhost. Assuming you're using Apache on your localhost, here's some things to check:
Upvotes: 4