php – 无法通过.htaccess获取url字符串中的第10个变量
发布时间:2020-12-13 16:47:15 所属栏目:PHP教程 来源:网络整理
导读:我想在我的 PHP代码中得到sort_by但它似乎是返回数字0的变量1的值. RewriteRule ^abc/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$search.php?counrty=abcstate=$1gender=$2r_city=$3r_mstatus=$4r_religion=$5r_et
我想在我的
PHP代码中得到sort_by但它似乎是返回数字0的变量1的值.
RewriteRule ^abc/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$search.php?counrty=abc&state=$1&gender=$2&r_city=$3&r_mstatus=$4&r_religion=$5&r_ethnicity=$6&r_cast=$7&r_profession=$8&r_education=$9&sort_by=$10 [NC] 解决方法
根据Apache文档,对于$N,N的值只能是0-9.因此,试图获得10美元是行不通的.您可能需要经历两次重写步骤.所以,也许你使用这样的东西:
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+/[^/]+/[^/]+)/?$search.php?country=$1&state=$2&gender=$3&r_city=$4&r_mstatus=$5&r_religion=$6&r_ethnicity=$7&r_cast=$8&r_profession=$8&profession_and_education_and_sort=$9 [NC] RewriteCond %{REQUEST_FILENAME} ^search.php$ RewriteCond %{QUERY_STRING} ^(country=.*&state=.*&gender=.*&r_city=.*&r_mstatus=.*&r_religion=.*&r_ethnicity=.*&r_cast=.*)&profession_and_education_and_sort=([^/]+)/([^/]+)/([^/]+) RewriteCond ^search.php$search.php?%1&r_profession=%2&r_education=%3&sort_by=%4 [NC,L] (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |