For the shopify application proxy, you are supposed to set the response to Content-Type: application/liquid, as explained here.
I am using Laravel, but even trying a basic php example, the browser will only download the response, it will not display it.
<?php
header('Content-Type: application/liquid');
echo "test";
Even just that will download a file with the contents "test".
I've tried .htaccess changes, and those do not work.
Thank you.