●shopへのアクセスをhttpにして、/newshop/へ
RewriteCond %{REQUEST_URI} .*/shop/
RewriteRule ^(.*)$ http://%{HTTP_HOST}/newshop/ [R=301,L]
●ドキュメントルートへのアクセスがhttpsの時はhttpへ
RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) http://%{HTTP_HOST} [R=301,L]
●ドキュメントルートにディレクトリを保存できないけど、
ドキュメントルートへのアクセスした場合は、xxxx/index.phpの内容を表示する
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) /xxxx/index.php [L]
RewriteEngine on はonにしておいてね。