基于查询字符串的密码保护 php url

发布于 2024-11-11 17:38:57 字数 134 浏览 0 评论 0原文

我有一个 CMS 系统,它运行很多页面,为页面创建的 url 类似于 cms.php?id=xx,我只想使用 htaccess 密码保护具有特定 id(例如 9)的页面,我在 htaccess 中的值为零因此,如果代码具有一定的解释性,那将对我有所帮助。

I have a CMS system which runs lot of pages and url created for pages are like cms.php?id=xx, I would like to only password protect a page having specific id (say 9) using htaccess, i am kinda zero in htaccess so if code is bit explainative that will help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

念﹏祤嫣 2024-11-18 17:38:57

这应该会让你朝着正确的方向前进

<?
    //* Check for values in $PHP_AUTH_USER and $PHP_AUTH_PW */

    if ((!isset($PHP_AUTH_USER)) || (!isset($PHP_AUTH_PW))) {

         //* No values: send headers causing dialog box to appear */
        header('WWW-Authenticate: Basic realm="My Private Stuff"');
        header('HTTP/1.0 401 Unauthorized');
        echo 'Authorization Required.';
        exit;

    } else if ((isset($PHP_AUTH_USER)) && (isset($PHP_AUTH_PW))){

        /* Values contain some values, so check to see if they're correct */

        if (($PHP_AUTH_USER != "validname") || ($PHP_AUTH_PW != "goodpassword")) {
                //* If either the username entered is incorrect, or the password entered is incorrect, send the headers causing dialog box to appear */
                header('WWW-Authenticate: Basic realm="My Private Stuff"');
                header('HTTP/1.0 401 Unauthorized');
                echo 'Authorization Required.';
                exit;
        } else if (($PHP_AUTH_USER == "validname") || ($PHP_AUTH_PW == "goodpassword"))  {
                //* if both values are correct, print success message */
                echo "<P>You're authorized!</p>";
        }
    } 
?>

This should get you going in the right direction

<?
    //* Check for values in $PHP_AUTH_USER and $PHP_AUTH_PW */

    if ((!isset($PHP_AUTH_USER)) || (!isset($PHP_AUTH_PW))) {

         //* No values: send headers causing dialog box to appear */
        header('WWW-Authenticate: Basic realm="My Private Stuff"');
        header('HTTP/1.0 401 Unauthorized');
        echo 'Authorization Required.';
        exit;

    } else if ((isset($PHP_AUTH_USER)) && (isset($PHP_AUTH_PW))){

        /* Values contain some values, so check to see if they're correct */

        if (($PHP_AUTH_USER != "validname") || ($PHP_AUTH_PW != "goodpassword")) {
                //* If either the username entered is incorrect, or the password entered is incorrect, send the headers causing dialog box to appear */
                header('WWW-Authenticate: Basic realm="My Private Stuff"');
                header('HTTP/1.0 401 Unauthorized');
                echo 'Authorization Required.';
                exit;
        } else if (($PHP_AUTH_USER == "validname") || ($PHP_AUTH_PW == "goodpassword"))  {
                //* if both values are correct, print success message */
                echo "<P>You're authorized!</p>";
        }
    } 
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文