我创建了一个新的ASP.NET项目,添加了 Angular Quick Start 文件,还原了包并构建了它。 Ctrl + F5在localhost:port
上打开了应用,一切都还可以。但是,我想在IIS上使用域local.project.com
而不是localhost:port
来托管项目。
我所做的步骤:
当我转到http://local.project.com
时,我得到 403 - 禁止访问:拒绝访问。
答案 0 :(得分:0)
问题在于运行应用程序的应用程序池,没有必要的权限。解决这个问题
找到解决方案here。
另外,请勿忘记将public static boolean isPositiveFirst(int[] numbers) {
int k = IntStream.range(0, numbers.length).filter(i -> numbers[i]<1).findFirst().orElse(-1);
if(k < 0)
return true;
else
return IntStream.of(Arrays.copyOfRange(numbers, k, numbers.length)).filter(i-> i>0).count() <1;
}
添加到主机文件中。