就是做成和这个网站dtones.info一样的
这个php文件路径是http://mega-tones.com/dtonesinfo/redirect.php

解决方案 »

  1.   

    就是说,选择好相应的手机厂商后,点击get ringtones按钮的时候,跳转到相应的手机厂商对应的页面
      

  2.   

    用POST或者GET方式把手机厂商的标记(比如说ID...)传入redirect.php这个文件,然后在redirect.php这个文件中作判断,可以用switch。比如说:$id = $_GET['id'];
    switch ($id) {
        case 0:
            $url = "nokia.php";
            break;
        case 1:
            $url = "htc.php";
            break;
        default:
            $url = "index.php";
    }
    header($url);