ich versuche nen Ordner mit 301 redirect auf die HOsturl umzuleiten
https://*.fotos.domain.com/fotos/*
nach
https://*.fotos.domain.com/*
das was ich benutze bringt nix, da ^fotos sich auf das was im
Ordner ist bezieht.
Code: Alles auswählen
RewriteRule ^fotos/(.*)$ /$1 [L,R=301]
Code: Alles auswählen
RewriteCond %{HTTP_HOST} ^fotos.domain.com/fotos/
RewriteRule (.*) http://[a-zA-Z0-9]+.fotos.domain.com/$1 [R=301,L]