如果我直接在浏览器栏中输入www.mydomain / error404.html它应该返回404响应还是200 ok?
如果我输入www.mydomain.co.uk/something-that-dosent-exist.html,它会返回404页面的正确状态为404,但是我的实际404.html页面应该返回200ok ??
http://gsitecrawler.com/tools/Server-Status.aspx
错误doc error404.html
htaccess的
AddType x-mapp-php4 .htm
#turn off the smart spelling matching feature.
CheckSpelling off
#set your real error document, which can be a php document.
ErrorDocument 404 /error404.html
主机是1and1共享主机
欢呼任何帮助李
答案 0 :(得分:1)
我希望它返回200.您的页面(即使它的名称为404,并且被用作您的重定向404页面)存在,并且它被找到并正确提供。
答案 1 :(得分:1)
是的,这是正确的。如果您要访问任何可访问世界的站点,并且您的浏览器成功获取该页面,则应返回200 OK。
通常,您不会将错误页面保留在用户可以直接访问的位置。您通常在内部重定向到服务器上的错误页面。