如何在友好网址中使用get方法。

时间:2015-01-12 04:45:26

标签: .htaccess

我的网址是:http://rang.comli.com/servicecnt/service_id/5。 使用.htaccess文件,我已经创建了友好的url.I想要使用$ _GET方法检索url值。到目前为止,我已经在这样做了php,但我想知道如何使用$ _GET方法并分配改变。

<?php
    $htp=$_SERVER['REQUEST_URI'];
    $htp_arr=explode("/",$htp);
    echo $htp;
    echo "<pre>";
    print_r($htp_arr)."<br/>";
    echo "ID=".$htp_arr[3]."<br/>";
    echo "Name=".$htp_arr[2]."<br/>";
    echo "Name2=".$htp_arr[1]."<br/>";
?>

1 个答案:

答案 0 :(得分:0)

如果你正在使用.htaccess from this answer,那么只需使用:

$serviceId = $_GET['service_id'];

对于tution URI,添加以下规则:

RewriteRule ^tution/tution_id/(\d+)/?$ tution.php?tution_id==$1 [QSA,L]