1

我有一个简单的 htaccess 设置,我只想保护我的 index.php 文件。我写下了以下似乎最合乎逻辑的内容,但它只是告诉我需要 401 授权。如果我用 index.php 打开链接,它会提示我登录,否则不会。

有什么方法可以在不将 index.php 添加到链接的情况下触发该登录?我真的只希望 index.php 受到保护。

<Files index.php>
  require valid-user
</Files>

谢谢!

4

1 回答 1

2

尝试使用LocationMatch

<LocationMatch "(.*/|index.php)$">
    Require valid-user
</LocationMatch>
于 2012-04-17T06:55:44.800 回答