たとえば、URL は http://x.com/index.php?module=music&type=English Song
です。
は、php 内で htacess を通じて http://x.com/music_English Song.html に書き換えられます
次のように記述します
$type = $_GET['type']; または $type = urldecode($_GET['type']);
$sql = mysql_query("select * from music where type = '$type' " ;
それは通常の問題であることが判明しました
#Page
RewriteRule ^(.*).html$ ?m=$1
# サブページ