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>