I’d like to know if it is possible and if so how to have OctoberCMS (which is built on Laravel) and Laravel5 installed to the same domain but the different installs served by different urls.
I’ll try and explain OctoberCMS - this is the public facing website and back-end CMS for the website Laravel App - this is my in house developed office management and client area app
I have my virtual host set up and the website/October is accessible and all routes work ok
mydomain.com/* -> public_html = October CMS - which will serve whichever pages are on the website e.g mydomain.com/about etc.
There 2 routes which I want handled by my Laravel app
mydomain.com/office/* -> public_html/office/public = Laravel app
mydomain.com/client/* -> public_html/office/public = Laravel app
How do I go about setting my virtual host or .htaccess to make this happen
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
You can try Microweber CMS. It is on Laravel 5 too
Thanks, I’ll give it a try.
Will this directive take precedence over the .htaccess file in /var/www/public_html/client/public/
On the Apache side, the configuration is pretty simple. You just need to set up an
Alias
directive to point to the Larevel app that will be served from the sub-folder. It would looks something like this: