Problem jest taki, że jak wpisze w przeglądarce http://public.webstarter.pl to i tak przekieruje na http://*.webstarter.pl
A jak usunę przekierowanie na http://*.webstarter.pl to wtedy działa przekierowanie na public.
Mój htaccess wygląda następująco:
RewriteEngine On # public.webstarter.pl RewriteCond %{HTTP_HOST} ^(www.)?public.webstarter.pl RewriteCond %{REQUEST_URI} !public/ RewriteRule ^(.*)$ public/$1 [NC,L,QSA] # RewriteRule ^(.*)$ public/$1 [L] # *.webstarter.pl RewriteCond %{HTTP_HOST} ^(www\.)?(.+).webstarter\.pl$ [NC] RewriteRule ^(.*)$ /domain/webstarter.pl/$1 [L]