gpt4 book ai didi

.htaccess 和过滤 $_GET

转载 作者:行者123 更新时间:2023-12-04 17:26:49 28 4
gpt4 key购买 nike

您好,我正在编写个人资料页面脚本,在此脚本中,我检查传入的 $_GET 变量的值并验证它是一个整数,然后我根据 $_SESSION 值验证此值以确认他们只能访问自己的帐户.代码如下所示:

// validate $_GET field 
if(isset($_GET['identity']) && filter_var($_GET['identity'], FILTER_VALIDATE_INT, array('min_range' => 1))) {


if(isset($_SESSION['user_identity']) && ((int)$_SESSION['user_identity'] === (int)$_GET['identity'])) { // if session exists and is === $_GET['identity']
// Proceed with code

例如,如果我尝试传递 '0','2-2','abc' 或没有值作为 $_GET 值,查询正确失败并将它们重定向到主页,这很好用。

然后我试图做的是改变我的 .htaccess 文件以将 URL 映射到“profile/1”,只是为了整理它。
RewriteRule ^profile$ profile.php
RewriteRule ^profile/([0-9]+)$ profile.php?identity=$1 [NC,L]

我现在发现页面不再使用上面那些无效的 $_GET 参数重定向。它只是试图找到 'profile/abc.

有谁知道为什么?

最佳答案

我使用这个,它对我有用:

RewriteEngine On
RewriteBase /
RewriteRule ^profile$ profile.php
RewriteRule ^profile/([a-z0-9\-]+)$ profile.php?identity=$1 [NC,L,QSA]

现在,你是怎么得到的 profile/abc ?如果您尝试在规则中传递字母,它将不起作用,因为您只指定数字 ([0-9]+) .如果你想传递信件,你需要使用:
RewriteRule ^profile/([a-z0-9\-]+)/?$ profile.php?identity=$1 [NC,L,QSA]

关于.htaccess 和过滤 $_GET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7769774/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com