cancel
Showing results for 
Search instead for 
Did you mean: 

Page return Not Found error if Use Web Server Rewrites “yes”

Page return Not Found error if Use Web Server Rewrites “yes”

If my Use Web Server Rewrites = yes, pages return not found error. How can i solve this issue.

4 REPLIES 4

Re: Page return Not Found error if Use Web Server Rewrites “yes”

If you want  enable from admin panel  Web Server Rewrites = yes

Then make sure your .htaccess file in main root folder.

Find helpful ? Consider Giving Kudos to this post.
Problem solved? Click Accept as Solution!"
Qaisar Satti

Re: Page return Not Found error if Use Web Server Rewrites “yes”

Yes, in my root folder consists .htaccess file, still, i get an error.

Re: Page return Not Found error if Use Web Server Rewrites “yes”

Make sure your Secure and Unsecure base urls should end with “/”.

Also check if mod_rewrite is enabled on your server.
For rest check this link Stackoverflow

Find helpful ? Consider Giving Kudos to this post.
Problem solved? Click Accept as Solution!"
Qaisar Satti

Re: Page return Not Found error if Use Web Server Rewrites “yes”

Also, check if mod_rewrite is enabled on your server at all. You can create simple PHP script and execute it:

 

<?php
phpinfo();

and search for mod_rewrite. If it's disabled, you'll have to add it according to the manual which you can find at http://magento.stackexchange.com/questions/21033/remove-index-php-from-the-magento-url-gives-404-err...

 

 

Another thing, if you're using Nginx instead of Apache2, then .htaccess won't have any effect. You'll have to configure Nginx properly, there are many manuals on the internet.

If this response was helpful to you, consider giving kudos to this post.
If this response solved your problem, click accept as solution to help others solve this issue