我目前正在使用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)
它错了
我用Google搜索了几个小时,我找不到任何东西。
Require
指令不能与<files>
在同一行,否则会出现语法错误。所以把它放在一个新的行。
AuthType Basic
AuthName "Password Protected Area"
AuthUserFile /public_html/tristan.htpasswd
Require valid-user
<Files "index.html">
Require valid-user
</Files>