Just did a fresh install of 2.1.1 on the server where the finished cart will eventually reside.
Then I setup the seo rewrites for the frontend which work fine, but now the admin navigation does not work.
All of the links in the admin nav have had admin.php?dispatch= removed from the url.
So for example, under the Administration tab, the Settings link should be :
[COLOR=“Blue”]www.mydomain.com/admin.php?dispatch=settings.manage[/COLOR]
but instead is only :
[COLOR=“Blue”]www.mydomain.com/settings.manage[/COLOR]
likewise, the Catalog > Products link should be :
[COLOR=“Blue”]www.mydomain.com/admin.php?dispatch=products.manage[/COLOR]
but has been reduced to
[COLOR=“Blue”]www.mydomain.com/products.manage[/COLOR]
The same goes for every single link within the admin section, except for the link to the dashboard, which suddenly adds the admin.php back into the link’s url.
It looks like the system is trying to adjust the urls for the sake of mod_rewrite, which doesn’t make any sense.
here’s my htaccess:
DirectoryIndex index.html index.php
RewriteEngine on
RewriteBase /~workboot/buy/
RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} .*\/catalog\/.*
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
and here’s my httpd.ini file:
[ISAPI_Rewrite]
#UriMatchPrefix /
#UriFormatPrefix /
RewriteRule /catalog/(.*)? /catalog/$1 [L]
RewriteRule /addons/(.*) /addons/$1 [L]
RewriteRule /lib/(.*) /lib/$1 [L]
RewriteRule /js/(.*) /js/$1 [L]
RewriteRule /skins/(.*) /skins/$1 [L]
RewriteRule /install/(.*) /install/$1 [L]
RewriteRule /payments/(.*) /payments/$1 [L]
RewriteRule /images/(.*) /images/$1 [L]
RewriteRule /index\.php(.*) /index.php$1 [L]
RewriteRule /admin\.php(.*) /admin.php$1 [L]
RewriteRule (.*?)(\?(.*))? /index.php?sef_rewrite=1&$3 [L]
PLEASE REMEMBER
all links and SEO rewrites for the frontend of the site work perfectly
As far as I know, the backend was working correctly, then I started touching up some css for the frontend, then logged back into the backend only to find it not working.
Any ideas from the wise?
Any help is greatly appreciated.
Thanks.