https://issues.apache.org/bugzilla/show_bug.cgi?id=47236

           Summary: RewriteRule using :SSL or :NOSSL doesn't compute for
                    my browser.  Solution enclosed.
           Product: Apache httpd-2
           Version: 2.2-HEAD
          Platform: All
               URL: http://httpd.apache.org/docs/2.2/ssl/ssl_faq.html#rela
                    tive
        OS/Version: All
            Status: NEW
          Severity: minor
          Priority: P2
         Component: Documentation
        AssignedTo: [email protected]
        ReportedBy: [email protected]


Instead of:
RewriteEngine on
RewriteRule ^/(.*):SSL$ https://%{SERVER_NAME}/$1 [R,L]
RewriteRule ^/(.*):NOSSL$ http://%{SERVER_NAME}/$1 [R,L]

Please use:
RewriteEngine on
RewriteRule ^/(.*)/SSL/$ https://%{SERVER_NAME}/$1 [R,L]
RewriteRule ^/(.*)/NOSSL/$ http://%{SERVER_NAME}/$1 [R,L]

The same documentation appears in other versions of the page.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to