Tito Posted September 19, 2012 Share Posted September 19, 2012 (edited) I upgraded to latest .17 , though now encouter following error: When going to the main url www.shopdomain.com , it should redirect to the default shop , with friendly url 'home' : www.shopdomain.com/home . But it redirects to the 404 page. Going directly to www.shopdomain.com/home does work. It seems an extra slash (/) is added, so going to www.shopdomain.com translates to www.shopdomain.com/home// (note the double slashes) How can this be fixed ? I checked the htaccess file but don't see any double slashes there... Edited September 21, 2012 by Tito (see edit history) Link to comment Share on other sites More sharing options...
Tito Posted September 21, 2012 Author Share Posted September 21, 2012 No-one experiencing this error ? Link to comment Share on other sites More sharing options...
Tito Posted September 21, 2012 Author Share Posted September 21, 2012 Solved by adding this rewrite conditions to the htacces file after the 'RewriteRule ^API...' : RewriteCond %{REQUEST_URI} ^(.*)//(.*)$ RewriteRule . %1/%2 [R=301,L] Link to comment Share on other sites More sharing options...
Recommended Posts