编辑.htaccess时出错500

时间:2014-05-29 04:59:00

标签: php apache .htaccess

我收到错误消息

  

服务器错误!

     

服务器遇到内部错误,无法完成您的请求。服务器过载或CGI脚本出错。

     

如果您认为这是服务器错误,请与网站管理员联系。

     

错误500

我在更改之前就是代码

AuthName "xampp user"
AuthType Basic
AuthUserFile "C:\xampp\security\xampp.users"
require valid-user

我把它改成了

# 1 ---- Establish a custom 404 File not Found page ----

ErrorDocument 404 /filenotfound.php

# 2 ---- Prevent directory file listing in all of your folders ----

IndexIgnore *

我需要一个自定义的404页面,以便人们看不到我的文件。

1 个答案:

答案 0 :(得分:0)

对于404 Page Not Found Error,您的.htaccess文件应如下所示ErrorDocument 404 /404.php

禁止访问

Options -Indexes

所以你应该使用这个

Options -Indexes
ErrorDocument 404 /filenotfound.php

确保将filenotfound.php页放在您创建.htaccess文件的文件夹中。

以下是Htaccess

的推荐链接