我的角项目正在http:// localhost:8080 / MyAngular /上运行
我添加了<base href="/">
来删除hashbang。但是,当我点击帮助链接时,它将路径视为http:// localhost:8080 / help而不是http:// localhost:8080 / MyAngular / help
请帮我正确配置。我已尝试<base href="/MyAngular">
和<base href="./">
但问题仍未得到解决。
这是我的.htaccess文件
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