如何在htaccess文件中使用多个文件?

问题描述 投票:0回答:1

我不能在 htaccess 文件中使用多个文件进行密码保护

AuthType 基本 AuthName“密码保护区” AuthUserFile“/customers/a/1/e/korevi.no/httpd.www/.htpasswd” 需要有效用户 AuthType 基本 AuthName“密码保护区” AuthUserFile“/customers/a/1/e/korevi.no/httpd.www/.htpasswd” 需要有效用户

我希望这两个 html 文件都应该受密码保护

html file .htaccess
1个回答
0
投票

您的代码中似乎有一个嵌套文件,这可能会令人困惑。这就是我认为应该发生的事情

<Files "startside-int.html">
    AuthType Basic
    AuthName "Password Protected Area"
    AuthUserFile "/customers/a/1/e/korevi.no/httpd.www/.htpasswd"
    Require valid-user
</Files>

<Files "referater.html">
    AuthType Basic
    AuthName "Password Protected Area"
    AuthUserFile "/customers/a/1/e/korevi.no/httpd.www/.htpasswd"
    Require valid-user
</Files>

我确保关闭了每个

© www.soinside.com 2019 - 2024. All rights reserved.