英文:
403 - Forbidden: Access is denied. You do not have permission to view this directory or page using the credentials that you supplied.(IIS Server)
问题
我遇到这个错误 - 403 - 禁止访问:
拒绝访问。您没有使用提供的凭据查看此目录或页面的权限。当我尝试仅使用网站名.com访问网站时出现。如果我手动输入https://,它可以工作。刷新也可以正常工作。我尝试删除浏览器缓存(memory)。它没有解决问题,而且因为我正在使用IIS 10服务器,我没有.htaccess文件。
我该如何解决这个问题?谢谢。
英文:
I am getting this error - 403 - Forbidden: Access is denied.
You do not have permission to view this directory or page using the credentials that you supplied.
when i am trying to access website just using webistename.com. If i manually type https:// before it works. It also works if i refresh. I tried deleting browser cache memory(history). It dint solve the issue, also since i am using IIS 10 server i don't have a .htaccess file.
How can I solve this issue? Thank you.
答案1
得分: 1
你只在 HTTP URL 上遇到 403.4 错误。
建议你按照以下步骤在 IIS 中禁用网站的 SSL 设置:
- 打开 IIS 管理器
- 点击你的网站
- 在 "IIS" 部分点击 "SSL 设置"
- 取消选中 "要求 SSL"
英文:
You are getting 403.4 error only for the http url.
to suggest you to disable the require ssl setting for the website in iis by following below steps:
- Open IIS Manager
- Click on your website
- Click on the "SSL Settings" in the "IIS" section
- Uncheck "Require SSL"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论