Thank you.   I am glad I asked because I must have missed the permanent
part.   I will give it a shot.   I'm on the HSTS preloading list, so most
browsers should redirect to https anyways.   Thanks so much!!!!   It'd be
nice to remove all those rewrite rules from the .htaccess file!   The
article I was originally following talked about the redirect directive in
the Apache config file, but said it would not redirect the $1 or whatever
you want to call it.   For example, they said if I had:
Redirect "/" "https://subdomain1.mydomain.com/";    and someone went to
http://subdomain1.mydomain.com/test/example.html, it'd only redirect them
to https://subdomain1.mydomain.com, and not
https://subdomain1.mydomain.com/test/example.html.

I believe that statement is just incorrect and from what I've been reading,
it will redirect them the stuff after the domain name, which would be
wonderful!

On Mon, Feb 20, 2017 at 4:56 PM, Yann Ylavic <[email protected]> wrote:

> On Mon, Feb 20, 2017 at 8:17 PM, Spork Schivago <[email protected]>
> wrote:
> >
> > <VirtualHost *:80>
> >     ServerName www.mydomain.com
> >     Redirect "/" "https://www.mydomain.com/";
> > </VirtualHost>
> >
> > <VirtualHost *:80>
> >     ServerName subdomain1.mydomain.com
> >     Redirect "/" "https://subdomain1.mydomain.com:2083/";
> >     ...
> > </VirtualHost>
> >
> >
> > Then, if I go to something like
> > http://subdomain1.mydomain.com/test/example.html, would it take me to
> > https://subdomain1.mydomain.com:2083/test/example.html?
>
> I think so, you probably should try it first, but I don't see why it
> wouldn't work.
> "Redirect permanent / ..." might be interesting too if that's a
> "definitive" redirect, so that browsers use "https:" directly for next
> requests...
>
>
> Regards,
> Yann.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to