3
My access to this hosting can only be from the folder public_html
forward, I can’t access a level back.
I put all the project files inside public_html
and inserted a htaccess
with
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
and it didn’t work, returns me a blank page.
I wonder what’s wrong?
Laravel has write permission in folder
app/storage
? Also make sure that all extensions that Laravel needs are installed and enabled such as: JSON, Mcrypt and others.– Cahe
the briefcase
app/storage
is with permissions and extensions are all installed... for deployment test I got a repository from github that is active and working...– henrique