You cannot, however you can upload the content of an MVP application then create a .htaccess
file inside the htdocs folder and put this in it (this one if for Laravel):
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>