![]() |
Home
| Calendar
| Mail Lists
| List Archives
| Desktop SIG
| Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings Linux Cafe | Meeting Notes | Linux Links | Bling | About BLU |
Hunter Heinlen wrote: > RedirectMatch service\.server\.somewhere\.com(.*)$ > https://service.server.somewhere.com > > Are there any Apache guru around that can give pointers to what I'm > missing? Please let me know, TIA, and I will owe you one. I'm not really clear on what it is you are trying to do, but this is how you redirect all non-https to https: RewriteEngine On RewriteCond %{SERVER_PORT} !443 RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} RewriteCond %{REQUEST_METHOD} ^TRACE RewriteRule .* - [F] From your email, you seem to say you want to redirect traffic from port 80 to port 8080, but then you give an example URL that indicates that you want https without port 8080, which would be port 443. Anyway, you should be able to work out what you want from the above example. Grant M. -- Grant Mongardi Senior Systems Engineer NAPC gmongardi at napc.com http://www.napc.com/ 781.894.3114 phone 781.894.3997 fax NAPC | technology matters -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
![]() |
|
BLU is a member of BostonUserGroups | |
We also thank MIT for the use of their facilities. |