My htdocs folder is like the following: htdocs: /server - here all the lumen files are located /client - angular 1 project
How can I redirect that when I type localhost/server in the url it will redirect me to the public folder inside the server folder.
I've written this for the .htaccess inside the /server folder to redirect everything to the public folder.
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]