.htaccess Example for URL liks this
.htaccess
# apache rewrite rule
RewriteEngine On
RewriteCond $1 !^(index\.php|rewrite\.php)
RewriteRule ^guest/s/([^/]*)/(.*)$ rewrite.php?site=$1&$2 [QSA]
# QSA(追加查询字符串)
index.php
<?php
echo "<pre>"; print_r($_GET);
?>
show:
Array
(
[site] => default
[id] => baba
[query] => sth
)