使用.htaccess保护“友好URL”

时间:2012-12-14 15:53:51

标签: apache .htaccess security friendly-url .htpasswd

我想保护我在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个错误页面。

0 个答案:

没有答案