I just create a form where is possible to upload clients applications in .pdf. there a way that we can restrict that document to be accessible only in the app created in wappler or something like that, in order to avoid that if someone type the all route in the browser gets the document.?
Thanks
If you’re on apache you can set a .htaccess rule to prevent browsing in a directory. For example to secure a folder called ‘secure’…
RewriteEngine On
RewriteRule .*secure.* / [NC,F]
You can then use the file download feature within a server action to download the required files, you can also add the security restrict function too.
1 Like
Please check:
Thanks so much. I will work on it and lets all to know is everything is ok
Thanks