21
Ok, I must have been tired when I wrote that last response. Now that it's morning and I've had a very large cup of coffee, I think I remember you do need to adjust .htaccess if site runs in a sub folder.
Give this a try... added /ss to each line.
RewriteEngine on
RewriteRule ^shopadmin/([^/]+)/([^/]+)/([^/]+) /ss/modules/noah/admin.php?group=$1&pfunc=$2&id=$3 [L]
RewriteRule ^shopadmin/([^/]+)/([^/]+) /ss/modules/noah/admin.php?group=$1&pfunc=$2 [L]
RewriteRule ^shopadmin /ss/modules/noah/admin.php [L]
RewriteRule ^shop/([^/]+) /ss/modules/noah/shop.php?pfunc=$1 [L]
RewriteRule ^shop /ss/modules/noah/shop.php [L]
RewriteRule ^pages/([^/]+) /ss/modules/noah/pages.php?page=$1 [L]
RewriteRule ^pages /ss/modules/noah/pages.php [L]
NOTE : Watch for line wrap in the example above.