Trying to figure out the following lets say I have the following domain laravelapps.com
in that domain I will have the following
laravelapps.com/appsone/public laravelapps.com/appstwo/public laravelapps.com/appsthree/public
in the root of laravelapps.com there will be a .htaccess file with the following
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^/?appsone/(.*)$ /appsone/public/$1
RewriteRule ^/?appstwo/(.*)$ /appstwo/public/$1
RewriteRule ^/?appsthree/(.*)$ /appsthree/public/$1
</IfModule>
In each of the following apps I am confused in the folder bootstrap/paths.php what to change the path too. Any help that would be great.
as far as I know you need not to change the bootstrap paths just make proper routes and you are good to go
I tried that but the site doesn't load when you hit
laravelapps.com/appsone/
The site will not load
Got it working. Was a routing issue.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community