Edit bar is blank

Permalink
I turned off "pretty urls" and now the edit bar is blank and all of the css seems to be missing. I checked in Firebug and it says "The requested URL /tools/css/themes/srf_site/css/srf.css was not found on this server." I have never put any files in the "tools" folder. It is completely empty so I don't know why it is looking for the css file there.

As I said, this all started when I turned off "pretty urls" which seems very odd.

Any ideas?

 
waroly replied on at Permalink Best Answer Reply
I pasted the following from another site's .htaccess file and the edit bar and css styles are back:

<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>