如何给404页面设置user权限
1个回答
展开全部
自定义404页面,制作一个404页面,命名为notfound.asp,上传到网站根目录中消失。
设置404动态页面
修改应用程序根目录的设置,打开“web.config”文件编辑,加入如下内容:
<configuration>
<system.web>
<customErrors mode="On" defaultRedirect="error.asp">
<error statusCode=”404″redirect="notfound.asp" />
</customErrors>
</system.web>
</configuration>
修改自定义404页面
在自定义的404页面“notfound.asp”中加入:
<% Response.Status="404 NotFound" %>
便可以保证IIS能够正确地返回“404”状态码。
设置404动态页面
修改应用程序根目录的设置,打开“web.config”文件编辑,加入如下内容:
<configuration>
<system.web>
<customErrors mode="On" defaultRedirect="error.asp">
<error statusCode=”404″redirect="notfound.asp" />
</customErrors>
</system.web>
</configuration>
修改自定义404页面
在自定义的404页面“notfound.asp”中加入:
<% Response.Status="404 NotFound" %>
便可以保证IIS能够正确地返回“404”状态码。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询