To host in a sub directory with apache, you can just do this:
Build command similar to this:
ng build –base-href /myapp/
.htaccess file would look like this
RewriteEngine On
RewriteBase /myapp/
Options +FollowSymLinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.html [L,QSA]