Comment to 'Images are not displaying in front neither Studio'
  • And  this is our vhost 

    location / {

                index index.html index.htm index.php;

     

                rewrite "^/page/(.*)$" /page.php?i=$1 last;

                rewrite "^/m/(.*)$" /modules/index.php?r=$1 last;

                rewrite "^/s/([a-zA-Z0-9_]+)/([a-zA-Z0-9\.]+)" /storage.php?o=$1&f=$2 last;

     

                if (!-e $request_filename ) {

                    rewrite  ^/(.+)$  /r.php?_q=$1  last;

                    break;

                }

            }