I know there are quite a few savvy Sever guys on this list using MAMP. So hope you can shed some light on this. Been trying to figure out why path to images are not as indicated in the settings of a WordPress plugin  Shopp I am using for a project. I was wondering if this .htaccess rewrite rule was to blame:<br>

RewriteRule ^.*shop/images/(\d+)/?\??(.*)$ /wp-content/plugins/shopp/core/image.php?siid=$1&$2 [QSA,L]<br><br>Never had a {QSA,l] before but apparently it means <strong>q</strong>uery <strong>s</strong>tring
        <strong>a</strong>ppend. <br><br>Does that mean the string /wp-content/plugins/shopp/core/image.php?siid=$1&$2 is added to everything + *shop/images/(\d+)/?\??(.*)  ? What would be the use of that?<br><br><br>

FYI<br><br>Full .htaccess rewrite part is:<br><br># BEGIN WordPress<br><IfModule mod_rewrite.c><br>RewriteEngine On<br>RewriteBase /<br>RewriteRule ^index\.php$ - [L]<br>RewriteRule ^.*shop/images/(\d+)/?\??(.*)$ /wp-content/plugins/shopp/core/image.php?siid=$1&$2 [QSA,L]<br>

RewriteCond %{REQUEST_FILENAME} !-f<br>RewriteCond %{REQUEST_FILENAME} !-d<br>RewriteRule . /index.php [L]<br></IfModule><br><br># END WordPress<br>