my magneto installation is not directing properly from sub-folders. When I am on a page like the catalogsearch/advanced I am unable to get back up to the home page or any other main level link.
My .htaccess file is as follows,
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_URI} !^/media/
RewriteCond %{REQUEST_URI} !^/skin/
RewriteCond %{REQUEST_URI} !^/js/
RewriteCond %{REQUEST_URI} !^/var/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.php [L]
</IfModule>
here is my temporary website link so you can view the behaviour, easiest link is the photos page.
Please let me know of any ideas.
Thanks
It’s just a problem of your header navigation links.
You currently have this :
Try to correct this to have this :
This could do the trick.