Привет, я следую инструкциям на угловой официальной странице, чтобы развернуть в prod мое приложение, используя предоставляемый им htaccess, в этот момент все хорошо, но на одном сервере у меня есть веб-сервисы в 2 папках, мне нужно, чтобы htaccess игнорировал эти особенности URI и содержание
есть доступ с угловой страницы
RewriteEngine On
# If an existing asset or directory is requested go to it as it is
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]
# If the requested resource doesn't exist, use index.html
RewriteRule ^ /index.html
а там шахта
RewriteEngine On
RewriteCond %{REQUEST_URI} "/webservices/" [OR]
RewriteCond %{REQUEST_URI} "/MOAES/"
RewriteRule (.*) $1 [L]
# If an existing asset or directory is requested go to it as it is
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]
# If the requested resource doesn't exist, use index.html
RewriteRule ^ /index.html