how do i redirect web trafic from port 80 to 443

Mikkel Kruse Johnsen mikkel at linet.dk
Tue Jan 6 07:09:21 UTC 2004


Hi

I have had a lot of problem with this as well, I ended up doing:

<VirtualHost *:80>
    ServerAdmin your.email
    DocumentRoot /var/www
    ServerName your.domain

    RewriteEngine On
    RewriteRule ^/(.*)$ https://webadmin.cbs.dk/$1 [R]

   
...                                                                                                                                                 
</VirtualHost>

<VirtualHost *:443>
    ServerAdmin your email
    DocumentRoot /var/www
    ServerName your.domain
    ...
</VirtualHost>                                                                                                                                                   

/Mikkel

On Mon, 2004-01-05 at 06:47, Ow Mun Heng wrote:

> > -----Original Message-----
> > From: Alexander Dalloz [mailto:alexander.dalloz at uni-bielefeld.de]
> > Sent: Monday, January 05, 2004 9:02 AM
> > To: fedora-list at redhat.com
> > Subject: Re: how do i redirect web trafic from port 80 to 443
> 
> > Probably you want to enforce a redirection webpage calls on 
> > your Apache with HTTP to a HTTPS site. You can do that for 
> > instance this way using mod_rewrite:
> > 
> > <Directory /var/www/html/phpMyAdmin>
> >     RewriteEngine       on
> >     RewriteCond         %{SERVER_PORT} !=443
> >     RewriteRule         ^.* - [F]
> >     ErrorDocument       403 https://www.otherdomain.tld/
> > </Directory>
> > 
> > So if you access http://www.domain.de/phpMyAdmin/ (which is 
> > port 80) you
> 
> 
> I tried that on the webserver but no joy. (yes.. i did a service restart)
> Actually, I can't access https://my.ipaddress.com but I can access
> http://my.ipaddress.com:443
> 
> 
> 
> 
> --
> fedora-list mailing list
> fedora-list at redhat.com
> To unsubscribe: http://www.redhat.com/mailman/listinfo/fedora-list
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20040106/054dd86b/attachment-0001.htm>


More information about the fedora-list mailing list