我使用IIS V6.1 SP1将我的Angular项目部署到我们的开发环境中,并且我的路由参数出现403 Forbidden错误。在我的网址中,"客户端"不是组件而是路由参数。该项目在我的localhost上运行得非常好,只有当我将代码推送到我们的开发环境时才会出现问题。
const routes: Routes = [
{
path: '',
redirectTo: 'login',
pathMatch: 'full'
},
{
path: 'login',
component: LoginComponent
},
{
path: 'login/:licenseeCode',
component: LoginComponent
},
...
答案 0 :(得分:2)
如果您部署到文件夹(NOT ROOT),则可能需要调整
<base href="/FOLDER_WHERE_YOU_DEPLOYED/" />
还尝试将此添加到您的配置文件中:
<system.webServer>
<rewrite>
<rules>
<rule name="AngularJS Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
</conditions>
<action type="Rewrite" url="/FOLDER_WHERE_YOU_DEPLOYED/" />
</rule>
</rules>
</rewrite>
</system.webServer>