我想保护我的 htaccess 文件中的“友好 url”。为了更清楚一点,我有这些规则:
RewriteRule ^([a-z|A-Z|0-9|\/|\-|\_]+)$ index.php?page=$1
将 url/test/hello 重定向到 index.php?page=test/hello
我想做的是,例如,当给出一个特定的 url 时(例如,url/text/hello),
url/institucional
浏览器会提示用户和密码对话框,这与您可以对 htacces 文件中的目录执行的操作相同。
我试过:
<LocationMatch "/institucional">
AuthType Basic
AuthName "Padres Secundaria"
AuthUserFile /url/to/file.passwd
Require valid-user
</LocationMatch>
但它给了我一个 500 错误页面。