打开 Auth 控制文件夹中的特定 URL

打开 Auth 控制文件夹中的特定 URL

Location我已在 Apache 配置中将基本 HTTP 身份验证配置为特定配置,例如:

<Location /system>
  AuthType Basic
  AuthName "Password Required"
  AuthUserFile /to/passwd/file
  Require valid-user
  Order allow,deny
  Allow from xxx
  Allow from xxx
  Satisfy Any
</Location>

/system某个路径设置一个文件夹的别名/system

/system现在我在这个路径中有一个 URL /system/user/synchro,我需要将它公开给所有人。需要注意的是,该路径的目标不是一个物理文件,而是一个重写的 URL。

有没有办法嵌套Location(或其他东西)以便能够打开这一条路径但保持其余路径被锁定?

相关内容