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