编辑后000webhostapp .htaccess错误

时间:2018-02-13 05:11:33

标签: html .htaccess web password-protection internal-server-error

我目前正在使用000webhostapp.com上的免费帐户,当我打开文件管理器时,它已经有了一个.htaccess文件,我正在尝试使用.htpasswd和.htaccess保护我的index.html密码

AuthType Basic
AuthName "Password Protected Area"
AuthUserFile /public_html/tristan.htpasswd
Require valid-user

<Files "index.html">Require valid-user</Files>

但它已经有一个无法编辑的文件

# HTID:4294076: DO NOT REMOVE OR MODIFY THIS LINE AND THE LINES BELOW
php_value display_errors 1
# DO NOT REMOVE OR MODIFY THIS LINE AND THE LINES ABOVE HTID:4294076:

当我尝试将第一个代码放在它下面时

(im still not popular enough, so click here to view the image)

它出错了

click to view the errors

我用Google搜索了几个小时,我找不到任何东西。

1 个答案:

答案 0 :(得分:0)

Require指令不能与<files>在同一行,否则会出现语法错误。所以把它放在一个新的行。

AuthType Basic
AuthName "Password Protected Area"
AuthUserFile /public_html/tristan.htpasswd
Require valid-user
<Files "index.html">
Require valid-user
</Files>