How to make it so that a site on laravel would be available on the example.com address, and an Angula application would be loaded on example.com/admin? Server structure
root -laravel (сайт на laravel) -admin (приложение на angular)
I tried it like this, it does not work
<IfModule mod_rewrite.c> Options +FollowSymLinks RewriteEngine On RewriteRule ^(.*)$ laravel/public/$1 [L] RewriteRule ^/admin/$ /admin/app/index.html$1 [L] </IfModule>