I'm trying to host my Laravel 5.1 site on Fasthosts (PHP 5.6), with the end URL hopefully being a subfolder (i.e. www.domain.com/project/).
I have uploaded my files to a folder on the same level as htdocs (including vendor folder and .env). I have set the permissions of the storage folder to 0777. I have created a folder in htdocs called "project" and put the contents of the Laravel public folder in there. I have updated the index.php file to point to the core folder.
In my .htaccess file, I have tried various combinations of including and excluding RewriteBase /, RewriteBase /project/, RewriteRule ^ index.php, and RewriteRule ^ /index.php.
In all cases, when I navigate to www.domain.com/project/, all I get is a 500 server error. Does anyone have any suggestions please?