RewriteEngine on 
Options -Indexes
RewriteRule ^index.html$								index.php
RewriteRule ^shop/([0-9]{1,})\.html$							shop/index.php?uid=$1
RewriteRule ^shop/([0-9]{1,})$								shop/index.php?uid=$1
RewriteRule ^shop/([0-9]{1,})-([a-zA-Z]{1,})\.html$					shop/index.php?uid=$1&act=$2
RewriteRule ^shop/([0-9]{1,})-([a-zA-Z]{1,})$						shop/index.php?uid=$1&act=$2
RewriteRule ^shop/([0-9]{1,})-([a-zA-Z]{1,})-([0-9]{1,})\.html$				shop/index.php?uid=$1&act=$2&id=$3
RewriteRule ^([a-zA-Z]{1,})/([a-zA-Z]{1,})\.html$					$1/$2\.php
RewriteRule ^([a-zA-Z]{1,})/list-([0-9]{1,})\.html$					$1/list.php?catid=$2
RewriteRule ^([a-zA-Z]{1,})/list-([0-9]{1,})-([0-9]{1,})\.html$				$1/list.php?catid=$2&pg=$3
RewriteRule ^([a-zA-Z]{1,})/list-([0-9]{1,})-([0-9]{1,})-([\w]{1,})\.html$		$1/list.php?catid=$2&pg=$3&key=$4
RewriteRule ^([a-zA-Z]{1,})/list--([0-9]{1,})\.html$					$1/list.php?pg=$2
RewriteRule ^([a-zA-Z]{1,})/list--([0-9]{1,})-([\w]{1,})\.html$				$1/list.php?pg=$2&key=$3
RewriteRule ^([a-zA-Z]{1,})/([0-9]{1,})\.html$						$1/detail.php?id=$2
RewriteRule ^([a-zA-Z]{1,})/([0-9]{1,})-([0-9]{1,})\.html$				$1/detail.php?id=$2&pg=$3

