Edit bar not appearing after moving website from folder to root using pretty URLs

Permalink
Hi,

I have just moved a website from a subfolder to the root. When logged in as an admin, the edit bar only appears on the home page. If I navigate through the website menu to another page the edit bar does not appear at all. If I go to the dashboard > sitemap and navigate to the page, the edit bar displays.

It seems to be related to the URL used to view the page. Pretty urls do not show the edit bar. Full urls (index.php?cID=129) display fine.

Any tips on getting the edit bar to display on pretty URLs? I have tried clearing the cache and changing the site cache to development from production.

digievo
 
digievo replied on at Permalink Reply
digievo
Opps!! rookie mistake.

I left the old folder in the "RewriteEngineBase" in .htaccess.

It should show:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>