Some htaccess question with SSL

Hi,

I have install my shop in the Root folder with SSL enabled.



in the Root i have a developer shop installed on /dev i call this shop with a subdomain adress dev.shop.com/dev this domain works only with [url=“https://dev.shop.com/dev”]https://dev.shop.com/dev[/url]



anybody can give me a tip what i have to change that i can call the domain without https://?



i try with


RewriteCond %{REQUEST_URI} !^/(newshop|dev)(/.*)?
RewriteCond %{THE_REQUEST} !^dev.shop.com$ [NC]


but no result.



my htaccess in the root have fallow inputs



thanks for help

```php

RewriteBase /

Redirect index to / ###

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index.php\ HTTP/

RewriteRule ^index.php$ http://www.shop.com/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} !.(png|gif|ico|swf|jpe?g|js|css)$

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . index.php?sef_rewrite=1 [L,QSA]







SetOutputFilter DEFLATE







```

Check in your config file which should be in the root of the CS Cart installation.

Hi StellarBytes

Thanks for answer.

the config.local file i have this entries. https path whitout slashes.


// Host and directory where software is installed on no-secure server
$config['http_host'] = 'www.shop.com';
$config['http_path'] = '';
// Host and directory where software is installed on secure server
$config['https_host'] = 'www.shop.com';
$config['https_path'] = '';