I'm trying to upload multiple Laravel 4 projects to my web server, not my development server. Each laravel 4 app is housed in their own subdirectory. How should my file structure be? I've searched around for a htaccess to remove the /public from the url but i've been unsuccessful. this server is for testing purposes only, it allows others to follow along as the project is being built. I know their are major security issues with leaving the laravel base structure in these directories, but again they are just for testing purposes and when the projects are complete they are removed and placed on their own hosting server. This is my file structure now:
-public_html/
main website html files
-Test Site Subdirectory Folder
-subdirectoryFolder
-Store/
-laravel app 1
-blog/
-laravel app 2
-newspaper
-laravel app 3
if i install laravel app in each subdirectory folder (www.testsite.com/Store
, www.testsite.com/blog
, www.testsite.com/newspaper
) each application works, however I am trying to remove the public at the end of the url, www.testsite.com/Store/public
is what is shown in the browser. Any help with this problem is greatly appreciated. Thank you.