CSS is not loading

0

I have the site of a client http://suprimark.com.br/ it was working normally, but when the service of the agency was access, it appeared like this, without css , in which it has calls to the .css files. I have no idea what it is, but I tried to access the css file through the URL and it says that it was not found, but it is in the yes, webroot folder of CakePHP. The error that is 404

public_html / .htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on
#    RewriteRule ^$ app/webroot/ [L]
 #   RewriteRule (.*) app/webroot/$1 [L]
</IfModule>

public_html / app / .htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule    ^$    webroot/    [L]
    RewriteRule    (.*) webroot/$1    [L]
</IfModule>

public_html / app / webroot / .htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
    
asked by anonymous 27.05.2015 / 16:32

1 answer

0

uncomment

<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule    ^$ app/webroot/    [L]
   RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>
    
27.05.2015 / 22:01