0
I made the publication of the project, ran correctly, however, the other projects that were at the root stopped working, I checked and from what I noticed the problem is in . htaccess, which is so at the moment:
php_value date.timezone 'America/Sao_Paulo'
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^image/(.*)\.[a-zA-Z]{2,4}$ app/webroot/thumb.php?$1 [QSA,L]
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
If I put the other projects inside the /webroot folder they work, but it gets URL /app/webroot/project
What’s in (app) is like this, this would be the root before the folder (app), it’s like directing everything based on the webroot folder of cake.
– helderburato
I updated my answer. Unfortunately I can’t test it, but I hope it takes you in the right direction.
– sergiopereira