比如url是   http://x.com/index.php?module=音乐&type=英文歌通过 htacess 重写为  http://x.com/音乐_英文歌.htmlphp 里面这样写$type = $_GET['type'];  或者  $type = urldecode($_GET['type']);$sql = mysql_query("select * from music where type = '$type'");
....
可是访问url就显示找不到该页   怎么办呢